I have the following problem : in my GWT project there is a "main" css file for the application, inline css in the DOM that come from the application computation and a css file that is bundled in an archive uploaded to the application and dynamically loaded.
Now I need for an Element
to find which CSS rules are applied, coming from either of the three sources. As I understand, GWT's getStyle()
function only returns informations that are in the DOM.
What's the simplest way to achieve this ?
Edit : If possible, I search for a client-side solution (in java or javascript) rather than a server-side one.