mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
11 lines
379 B
Plaintext
11 lines
379 B
Plaintext
#import <CSS/CSSRule.idl>
|
|
#import <CSS/CSSRuleList.idl>
|
|
|
|
interface CSSStyleSheet : StyleSheet {
|
|
// readonly attribute CSSRule? ownerRule;
|
|
[SameObject] readonly attribute CSSRuleList cssRules;
|
|
unsigned long insertRule(CSSOMString rule, optional unsigned long index = 0);
|
|
undefined deleteRule(unsigned long index);
|
|
undefined removeRule(unsigned long index);
|
|
};
|