mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
9 lines
242 B
Plaintext
9 lines
242 B
Plaintext
#import <CSS/CSSStyleSheet.idl>
|
|
|
|
// https://drafts.csswg.org/cssom/#the-stylesheetlist-interface
|
|
[Exposed=Window]
|
|
interface StyleSheetList {
|
|
getter CSSStyleSheet? item(unsigned long index);
|
|
readonly attribute unsigned long length;
|
|
};
|