2023-10-25 12:27:19 -03:00
|
|
|
// https://drafts.csswg.org/cssom/#the-cssimportrule-interface
|
2022-09-05 06:41:26 -03:00
|
|
|
[Exposed=Window]
|
2022-04-22 16:22:22 -03:00
|
|
|
interface CSSImportRule : CSSRule {
|
|
|
|
|
readonly attribute USVString href;
|
2025-12-04 13:48:19 -03:00
|
|
|
[SameObject, PutForwards=mediaText] readonly attribute MediaList media;
|
2025-03-19 10:18:08 -03:00
|
|
|
[SameObject, ImplementedAs=style_sheet_for_bindings] readonly attribute CSSStyleSheet? styleSheet;
|
2025-12-02 09:38:16 -03:00
|
|
|
readonly attribute CSSOMString? layerName;
|
2025-03-19 08:32:34 -03:00
|
|
|
readonly attribute CSSOMString? supportsText;
|
2022-04-22 16:22:22 -03:00
|
|
|
};
|