2021-03-08 11:22:18 +01:00
|
|
|
interface StyleSheet {
|
2021-03-08 13:40:53 +01:00
|
|
|
|
|
|
|
readonly attribute Element? ownerNode;
|
2021-03-08 16:16:28 +01:00
|
|
|
readonly attribute CSSOMString type;
|
2021-03-08 13:40:53 +01:00
|
|
|
|
2021-03-08 11:22:18 +01:00
|
|
|
// readonly attribute USVString? href;
|
2021-09-29 23:46:16 +02:00
|
|
|
readonly attribute CSSStyleSheet? parentStyleSheet;
|
|
|
|
readonly attribute DOMString? title;
|
2021-03-08 11:22:18 +01:00
|
|
|
// [SameObject, PutForwards=mediaText] readonly attribute MediaList media;
|
2021-09-29 23:46:16 +02:00
|
|
|
attribute boolean disabled;
|
2021-03-08 13:40:53 +01:00
|
|
|
|
2021-03-08 11:22:18 +01:00
|
|
|
};
|