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

Unified Diff: third_party/WebKit/Source/core/html/HTMLOptionElement.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/html/HTMLOptionElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLOptionElement.idl b/third_party/WebKit/Source/core/html/HTMLOptionElement.idl
index 263ac8b53911e96bde579586484c6562d5d1c077..d3325f8fa23720c8d0c0ba559c9f7d96b5f154ee 100644
--- a/third_party/WebKit/Source/core/html/HTMLOptionElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLOptionElement.idl
@@ -28,14 +28,14 @@
ConstructorCallWith=Document,
RaisesException=Constructor
] interface HTMLOptionElement : HTMLElement {
- [Reflect] attribute boolean disabled;
+ [CEReactions, Reflect] attribute boolean disabled;
readonly attribute HTMLFormElement? form;
- attribute DOMString label;
- [Reflect=selected] attribute boolean defaultSelected;
+ [CEReactions] attribute DOMString label;
+ [CEReactions, Reflect=selected] attribute boolean defaultSelected;
[ImplementedAs=selectedForBinding] attribute boolean selected;
- attribute DOMString value;
+ [CEReactions] attribute DOMString value;
// TODO(foolip): The text setter should never throw.
- [RaisesException=Setter] attribute DOMString text;
+ [CEReactions, RaisesException=Setter] attribute DOMString text;
readonly attribute long index;
};

Powered by Google App Engine
This is Rietveld 408576698