DOMExceptionImpl.READ_ONLY_STYLE_SHEET);
}
try {
InputSource is = new InputSource(new StringReader(cssText));
CSSOMParser parser = new CSSOMParser();
CSSRule r = parser.parseRule(is);
// The rule must be a style rule
if (r.getType() == CSSRule.STYLE_RULE) {
this.selectors = ((CSSStyleRuleImpl)r).selectors;
this.style = ((CSSStyleRuleImpl)r).style;