1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:07:36 +00:00

LibWeb: Add CSSImportRule wrapper

This commit is contained in:
Sam Atkins 2022-04-22 20:22:22 +01:00 committed by Andreas Kling
parent 1951873a5d
commit 0cf8986a1e
6 changed files with 28 additions and 4 deletions

View file

@ -0,0 +1,10 @@
#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;
};