mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
10 lines
434 B
Plaintext
10 lines
434 B
Plaintext
// https://drafts.csswg.org/cssom/#the-cssimportrule-interface
|
|
[Exposed=Window]
|
|
interface CSSImportRule : CSSRule {
|
|
readonly attribute USVString href;
|
|
[SameObject, PutForwards=mediaText] readonly attribute MediaList media;
|
|
[SameObject, ImplementedAs=style_sheet_for_bindings] readonly attribute CSSStyleSheet? styleSheet;
|
|
readonly attribute CSSOMString? layerName;
|
|
readonly attribute CSSOMString? supportsText;
|
|
};
|