Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Unified Diff: third_party/WebKit/Source/core/dom/DOMTokenList.idl

Issue 2043503002: Add [CEReactions] IDL attributes for Custom Elements V1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yukishiino review Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/DOMTokenList.idl
diff --git a/third_party/WebKit/Source/core/dom/DOMTokenList.idl b/third_party/WebKit/Source/core/dom/DOMTokenList.idl
index 6a4c9f772baa7bec83ea339e46c964271c7a3d9c..16a106af6f334729a711488ed33f734152616d73 100644
--- a/third_party/WebKit/Source/core/dom/DOMTokenList.idl
+++ b/third_party/WebKit/Source/core/dom/DOMTokenList.idl
@@ -30,11 +30,11 @@
readonly attribute unsigned long length;
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, CEReactions, CustomElementCallbacks] void add(DOMString... tokens);
+ [RaisesException, CEReactions, CustomElementCallbacks] void remove(DOMString... tokens);
+ [RaisesException, CEReactions, CustomElementCallbacks] boolean toggle(DOMString token, optional boolean force);
[RaisesException, CustomElementCallbacks] boolean supports(DOMString token);
- attribute DOMString value;
+ [CEReactions] attribute DOMString value;
stringifier;
iterable<DOMString>;
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMStringMap.idl ('k') | third_party/WebKit/Source/core/dom/Document.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698