I am trying to figure out how to use the CSS implementation from core.css.
I assume that CSSStyleSheetImpl(ICSSStyleSheet) is the Base to start from.
Is that correct?
My questions are:
How do i create a ICSSStyleSheet from a URl(/path/stylesheet.css)?
How do create an empty (new) ICSSStyleSheet (is the correct way to call
new DOMCSSImpl.createCSSStyleSheet()?)
How do i correctly add a rule to ICSSStyleSheet (call CSSStyleSheetImpl
insertRule(String rule, int index))?
How do I save an ICSSStyleSheet to file?
Thanks in advance
Andreas Chlache