| Index: Source/core/dom/DOMTokenList.idl
|
| diff --git a/Source/core/dom/DOMTokenList.idl b/Source/core/dom/DOMTokenList.idl
|
| index 3f166772624d24434a7e8494946051180146e66a..9aef3829cb247462435df24202c7a82740c3ec65 100644
|
| --- a/Source/core/dom/DOMTokenList.idl
|
| +++ b/Source/core/dom/DOMTokenList.idl
|
| @@ -28,9 +28,9 @@
|
| readonly attribute unsigned long length;
|
| [TreatReturnedNullStringAs=Null] getter DOMString item(unsigned long index);
|
| [RaisesException] boolean contains(DOMString token);
|
| - [RaisesException, CustomElementCallbacks=Enable] void add(DOMString... tokens);
|
| - [RaisesException, CustomElementCallbacks=Enable] void remove(DOMString... tokens);
|
| - [RaisesException, CustomElementCallbacks=Enable] 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, optional boolean force);
|
| [NotEnumerable] DOMString toString();
|
| };
|
|
|
|
|