Index: core/html/DOMTokenList.idl |
diff --git a/core/html/DOMTokenList.idl b/core/html/DOMTokenList.idl |
index c885018ffba4898bce96c398ed8ae07d7034c117..3f166772624d24434a7e8494946051180146e66a 100644 |
--- a/core/html/DOMTokenList.idl |
+++ b/core/html/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, DeliverCustomElementCallbacks] void add(DOMString... tokens); |
- [RaisesException, DeliverCustomElementCallbacks] void remove(DOMString... tokens); |
- [RaisesException, DeliverCustomElementCallbacks] boolean toggle(DOMString token, optional boolean force); |
+ [RaisesException, CustomElementCallbacks=Enable] void add(DOMString... tokens); |
+ [RaisesException, CustomElementCallbacks=Enable] void remove(DOMString... tokens); |
+ [RaisesException, CustomElementCallbacks=Enable] boolean toggle(DOMString token, optional boolean force); |
[NotEnumerable] DOMString toString(); |
}; |