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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTextAreaElement.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/HTMLTextAreaElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl
index 832ac3cbe88e1f7b19f1fbf66a0ce3d06cb98893..e07061632b175d50cb34d7814c95745508d66f6e 100644
--- a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl
@@ -23,24 +23,24 @@
interface HTMLTextAreaElement : HTMLElement {
// attribute DOMString autocomplete;
- [Reflect] attribute boolean autofocus;
- attribute unsigned long cols;
- [Reflect] attribute DOMString dirName;
- [Reflect] attribute boolean disabled;
+ [CEReactions, Reflect] attribute boolean autofocus;
+ [CEReactions] attribute unsigned long cols;
+ [CEReactions, Reflect] attribute DOMString dirName;
+ [CEReactions, Reflect] attribute boolean disabled;
[ImplementedAs=formOwner] readonly attribute HTMLFormElement? form;
- [RuntimeEnabled=InputModeAttribute, Reflect] attribute DOMString inputMode;
- [RaisesException=Setter] attribute long maxLength;
- [RaisesException=Setter] attribute long minLength;
- [Reflect] attribute DOMString name;
- [Reflect] attribute DOMString placeholder;
- [Reflect] attribute boolean readOnly;
- [Reflect] attribute boolean required;
- attribute unsigned long rows;
- [Reflect] attribute DOMString wrap;
+ [CEReactions, RuntimeEnabled=InputModeAttribute, Reflect] attribute DOMString inputMode;
+ [CEReactions, RaisesException=Setter] attribute long maxLength;
+ [CEReactions, RaisesException=Setter] attribute long minLength;
+ [CEReactions, Reflect] attribute DOMString name;
+ [CEReactions, Reflect] attribute DOMString placeholder;
+ [CEReactions, Reflect] attribute boolean readOnly;
+ [CEReactions, Reflect] attribute boolean required;
+ [CEReactions] attribute unsigned long rows;
+ [CEReactions, Reflect] attribute DOMString wrap;
readonly attribute DOMString type;
- attribute DOMString defaultValue;
- [TreatNullAs=NullString] attribute DOMString value;
+ [CEReactions] attribute DOMString defaultValue;
+ [CEReactions, TreatNullAs=NullString] attribute DOMString value;
readonly attribute unsigned long textLength;
readonly attribute boolean willValidate;

Powered by Google App Engine
This is Rietveld 408576698