mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 06:37:52 +00:00
The intent is to use these to autogenerate prototype declarations for Window and WorkerGlobalScope classes. And the spec links are just nice to have :^)
19 lines
511 B
Plaintext
19 lines
511 B
Plaintext
#import <CSS/CSSStyleSheet.idl>
|
|
#import <CSS/MediaList.idl>
|
|
#import <DOM/Element.idl>
|
|
|
|
// https://drafts.csswg.org/cssom/#stylesheet
|
|
[Exposed=Window]
|
|
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;
|
|
|
|
};
|