mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Add CSSGroupingRule.{cssRules, insertRule(), deleteRule()}
This commit is contained in:
parent
cada5d7c03
commit
a9cd17ae96
4 changed files with 50 additions and 8 deletions
|
@ -5,8 +5,8 @@
|
|||
// https://drafts.csswg.org/cssom/#the-cssgroupingrule-interface
|
||||
[Exposed=Window]
|
||||
interface CSSGroupingRule : CSSRule {
|
||||
// [SameObject] readonly attribute CSSRuleList cssRules;
|
||||
// unsigned long insertRule(DOMString rule, unsigned long index);
|
||||
// void deleteRule(unsigned long index);
|
||||
[SameObject] readonly attribute CSSRuleList cssRules;
|
||||
[Throws] unsigned long insertRule(DOMString rule, unsigned long index);
|
||||
[Throws] void deleteRule(unsigned long index);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue