mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
10 lines
379 B
Text
10 lines
379 B
Text
#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);
|
|
};
|