mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
17 lines
451 B
Plaintext
17 lines
451 B
Plaintext
#import <CSS/CSSStyleSheet.idl>
|
|
#import <CSS/MediaList.idl>
|
|
#import <DOM/Element.idl>
|
|
|
|
interface StyleSheet {
|
|
|
|
readonly attribute Element? ownerNode;
|
|
readonly attribute CSSOMString type;
|
|
|
|
// readonly attribute USVString? href;
|
|
readonly attribute CSSStyleSheet? parentStyleSheet;
|
|
readonly attribute DOMString? title;
|
|
// [SameObject, PutForwards=mediaText] readonly attribute MediaList media;
|
|
attribute boolean disabled;
|
|
|
|
};
|