Skip to content

Commit 3783bd7

Browse files
authored
[css-typed-om] use undefined union value for StylePropertyMapReadOnly.get() (w3c#1087)
1 parent 0a97705 commit 3783bd7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

css-typed-om/Overview.bs

+1-3
Original file line numberDiff line numberDiff line change
@@ -314,9 +314,7 @@ The {{StylePropertyMap}} {#the-stylepropertymap}
314314
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
315315
interface StylePropertyMapReadOnly {
316316
iterable<USVString, sequence<CSSStyleValue>>;
317-
any get(USVString property);
318-
/* 'any' means (undefined or CSSStyleValue) here,
319-
see https://github.com/heycam/webidl/issues/60 */
317+
(undefined or CSSStyleValue) get(USVString property);
320318
sequence<CSSStyleValue> getAll(USVString property);
321319
boolean has(USVString property);
322320
readonly attribute unsigned long size;

0 commit comments

Comments
 (0)