mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
11 lines
223 B
Plaintext
11 lines
223 B
Plaintext
#import <CSS/CSSRule.idl>
|
|
|
|
// https://www.w3.org/TR/cssom/#the-cssrulelist-interface
|
|
[Exposed=Window]
|
|
interface CSSRuleList {
|
|
|
|
getter CSSRule? item(unsigned long index);
|
|
readonly attribute unsigned long length;
|
|
|
|
};
|