Skip to content

Commit 1c3944d

Browse files
saschanazemilio
authored andcommitted
return CSSStyleSheet instead of StyleSheet
1 parent ac17cb6 commit 1c3944d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cssom-1/Overview.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ interface StyleSheet {
868868
readonly attribute CSSOMString type;
869869
readonly attribute USVString? href;
870870
readonly attribute (Element or ProcessingInstruction)? ownerNode;
871-
readonly attribute StyleSheet? parentStyleSheet;
871+
readonly attribute CSSStyleSheet? parentStyleSheet;
872872
readonly attribute DOMString? title;
873873
[SameObject, PutForwards=mediaText] readonly attribute MediaList media;
874874
attribute boolean disabled;
@@ -1128,7 +1128,7 @@ The {{StyleSheetList}} interface represents an ordered collection of CSS styl
11281128
11291129
[Exposed=Window]
11301130
interface StyleSheetList {
1131-
getter StyleSheet? item(unsigned long index);
1131+
getter CSSStyleSheet? item(unsigned long index);
11321132
readonly attribute unsigned long length;
11331133
};
11341134

0 commit comments

Comments
 (0)