mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 06:04:59 +00:00
6 lines
229 B
Text
6 lines
229 B
Text
interface CSSGroupingRule : CSSRule {
|
|
[SameObject] readonly attribute CSSRuleList cssRules;
|
|
unsigned long insertRule(CSSOMString rule, optional unsigned long index = 0);
|
|
undefined deleteRule(unsigned long index);
|
|
};
|
|
|