Skip to content

Commit aafb3d5

Browse files
authored
[css-typed-om] Use undefined for setters. (#1143)
Fixes #1142 See also whatwg/webidl#1516
1 parent 5263ee4 commit aafb3d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

css-typed-om/Overview.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ interface CSSUnparsedValue : CSSStyleValue {
838838
iterable<CSSUnparsedSegment>;
839839
readonly attribute unsigned long length;
840840
getter CSSUnparsedSegment (unsigned long index);
841-
setter CSSUnparsedSegment (unsigned long index, CSSUnparsedSegment val);
841+
setter undefined (unsigned long index, CSSUnparsedSegment val);
842842
};
843843

844844
typedef (USVString or CSSVariableReferenceValue) CSSUnparsedSegment;
@@ -2524,7 +2524,7 @@ interface CSSTransformValue : CSSStyleValue {
25242524
iterable<CSSTransformComponent>;
25252525
readonly attribute unsigned long length;
25262526
getter CSSTransformComponent (unsigned long index);
2527-
setter CSSTransformComponent (unsigned long index, CSSTransformComponent val);
2527+
setter undefined (unsigned long index, CSSTransformComponent val);
25282528

25292529
readonly attribute boolean is2D;
25302530
DOMMatrix toMatrix();

0 commit comments

Comments
 (0)