1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 21:44:59 +00:00
serenity/Userland/Libraries/LibWeb/CSS/StyleSheetList.idl
2023-10-25 19:45:41 +02:00

8 lines
242 B
Text

#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;
};