mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-18 15:52:21 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
9 lines
434 B
Text
9 lines
434 B
Text
// 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;
|
|
};
|