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

Unified Diff: third_party/WebKit/Source/core/dom/DOMStringMap.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/DOMStringMap.idl
diff --git a/third_party/WebKit/Source/core/dom/DOMStringMap.idl b/third_party/WebKit/Source/core/dom/DOMStringMap.idl
index ee97b9a881f2dc09397efebc295231774b15ac03..2810903003c874ee06f1eb79388328149ed44a30 100644
--- a/third_party/WebKit/Source/core/dom/DOMStringMap.idl
+++ b/third_party/WebKit/Source/core/dom/DOMStringMap.idl
@@ -30,12 +30,12 @@
SetWrapperReferenceFrom=element,
] interface DOMStringMap {
[ImplementedAs=item] getter DOMString (DOMString name);
- [RaisesException] setter void (DOMString name, DOMString value);
- deleter void (DOMString name);
+ [CEReactions, RaisesException] setter void (DOMString name, DOMString value);
+ [CEReactions] deleter void (DOMString name);
// FIXME: The indexed getter, setter and deleter are not in the
// spec and simply converts the index to a string.
[NotEnumerable] getter DOMString (unsigned long index);
- [RaisesException] setter void (unsigned long index, DOMString value);
- deleter void (unsigned long index);
+ [CEReactions, RaisesException] setter void (unsigned long index, DOMString value);
+ [CEReactions] deleter void (unsigned long index);
};
« no previous file with comments | « third_party/WebKit/Source/core/dom/ChildNode.idl ('k') | third_party/WebKit/Source/core/dom/DOMTokenList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698