From 524ca5010ba8076683c05547637fe1e06d151311 Mon Sep 17 00:00:00 2001 From: autokagami Date: Tue, 18 Aug 2020 18:33:42 +0200 Subject: [PATCH] [css-typed-om-1] Align with Web IDL specification --- css-typed-om/Overview.bs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/css-typed-om/Overview.bs b/css-typed-om/Overview.bs index 5f5416fb..ac32d641 100644 --- a/css-typed-om/Overview.bs +++ b/css-typed-om/Overview.bs @@ -310,10 +310,10 @@ interface StylePropertyMapReadOnly { [Exposed=Window] interface StylePropertyMap : StylePropertyMapReadOnly { - void set(USVString property, (CSSStyleValue or USVString)... values); - void append(USVString property, (CSSStyleValue or USVString)... values); - void delete(USVString property); - void clear(); + undefined set(USVString property, (CSSStyleValue or USVString)... values); + undefined append(USVString property, (CSSStyleValue or USVString)... values); + undefined delete(USVString property); + undefined clear(); };