mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
8f110e0fb1
No interfaces require wrappers anymore, so we can just make this the default mode.
11 lines
363 B
Plaintext
11 lines
363 B
Plaintext
#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;
|
|
};
|