Support origins in CSSOM stylesheets

This commit is contained in:
Nazım Can Altınova 2016-12-20 11:37:28 +03:00
parent 655a9fd7ce
commit fd950a7309
8 changed files with 103 additions and 9 deletions

View file

@ -6,7 +6,7 @@
[Exposed=Window]
interface CSSStyleSheet : StyleSheet {
// readonly attribute CSSRule? ownerRule;
[SameObject] readonly attribute CSSRuleList cssRules;
[Throws, SameObject] readonly attribute CSSRuleList cssRules;
[Throws] unsigned long insertRule(DOMString rule, unsigned long index);
[Throws] void deleteRule(unsigned long index);
};