blob: 20cfcfd8c1453db1a65f8ff99176198e76fa1265 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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;
};
|