ladybird/Libraries/LibWeb/CSS/CSSGroupingRule.idl

8 lines
348 B
Text
Raw Normal View History

// https://drafts.csswg.org/cssom/#the-cssgroupingrule-interface
[Exposed=Window]
interface CSSGroupingRule : CSSRule {
2022-04-22 10:13:37 -03:00
[SameObject, ImplementedAs=css_rules_for_bindings] readonly attribute CSSRuleList cssRules;
unsigned long insertRule(CSSOMString rule, optional unsigned long index = 0);
undefined deleteRule(unsigned long index);
};