These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
6 lines
209 B
Text
6 lines
209 B
Text
// https://drafts.csswg.org/cssom/#the-stylesheetlist-interface
|
|
[Exposed=Window]
|
|
interface StyleSheetList {
|
|
getter CSSStyleSheet? item(unsigned long index);
|
|
readonly attribute unsigned long length;
|
|
};
|