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

Unified Diff: third_party/WebKit/Source/core/dom/Attr.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/Attr.idl
diff --git a/third_party/WebKit/Source/core/dom/Attr.idl b/third_party/WebKit/Source/core/dom/Attr.idl
index 54540ba1d6648299e1f6c8b91edabb936a2eabc5..4fab546b7120e3c64a88fdee4e12179ff3f8ed42 100644
--- a/third_party/WebKit/Source/core/dom/Attr.idl
+++ b/third_party/WebKit/Source/core/dom/Attr.idl
@@ -26,9 +26,9 @@ interface Attr : Node {
readonly attribute DOMString? prefix;
readonly attribute DOMString localName;
readonly attribute DOMString name;
- [ImplementedAs=valueForBindings, CustomElementCallbacks] attribute DOMString value;
- [TreatNullAs=EmptyString, ImplementedAs=valueForBindings, MeasureAs=AttrNodeValue] attribute DOMString nodeValue; // legacy alias of .value
- [TreatNullAs=EmptyString, ImplementedAs=valueForBindings, MeasureAs=AttrTextContent] attribute DOMString textContent; // legacy alias of .value
+ [ImplementedAs=valueForBindings, CEReactions, CustomElementCallbacks] attribute DOMString value;
+ [TreatNullAs=EmptyString, ImplementedAs=valueForBindings, MeasureAs=AttrNodeValue, CEReactions] attribute DOMString nodeValue; // legacy alias of .value
+ [TreatNullAs=EmptyString, ImplementedAs=valueForBindings, MeasureAs=AttrTextContent, CEReactions] attribute DOMString textContent; // legacy alias of .value
[MeasureAs=AttributeOwnerElement] readonly attribute Element? ownerElement;
« no previous file with comments | « third_party/WebKit/Source/bindings/templates/methods.cpp ('k') | third_party/WebKit/Source/core/dom/ChildNode.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698