Skip to content

Commit 809ccea

Browse files
authored
[css-typed-om] use undefined union value for StylePropertyMapReadOnly.get()
whatwg/webidl#60 has been fixed for a long time.
1 parent 0a97705 commit 809ccea

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

css-typed-om/Overview.bs

Lines changed: 1 addition & 3 deletions
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)