| Index: sky/engine/core/dom/DOMTokenList.idl
|
| diff --git a/sky/engine/core/dom/DOMTokenList.idl b/sky/engine/core/dom/DOMTokenList.idl
|
| index 3ca3d36697813b1a65e1d117c4a175e5232ddfca..a7281bfd01ed26d0f8dd2a256dd6a89c6c3a1a06 100644
|
| --- a/sky/engine/core/dom/DOMTokenList.idl
|
| +++ b/sky/engine/core/dom/DOMTokenList.idl
|
| @@ -28,12 +28,12 @@
|
| readonly attribute unsigned long length;
|
| [TreatReturnedNullStringAs=Null] getter DOMString item(unsigned long index);
|
| [RaisesException] boolean contains(DOMString token);
|
| - [RaisesException, CustomElementCallbacks] void add(DOMString... tokens);
|
| - [RaisesException, CustomElementCallbacks] void remove(DOMString... tokens);
|
| - [RaisesException, CustomElementCallbacks] boolean toggle(DOMString token, optional boolean force);
|
| + [RaisesException, CustomElementCallbacks] void add(DOMString tokens);
|
| + [RaisesException, CustomElementCallbacks] void remove(DOMString tokens);
|
| + [RaisesException, CustomElementCallbacks] boolean toggle(DOMString token);
|
|
|
| void clear();
|
|
|
| - [NotEnumerable] stringifier;
|
| + DOMString toString();
|
| };
|
|
|
|
|