mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-29 12:24:18 +00:00
11 lines
363 B
Text
11 lines
363 B
Text
|
|
#import <CSS/CSSRule.idl>
|
||
|
|
#import <CSS/CSSStyleSheet.idl>
|
||
|
|
#import <CSS/MediaList.idl>
|
||
|
|
|
||
|
|
[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;
|
||
|
|
};
|