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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFormElement.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/HTMLFormElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLFormElement.idl b/third_party/WebKit/Source/core/html/HTMLFormElement.idl
index 102162e9da6795c814fc6b9177121087930c1e74..0e0e4f2ed73918ec565202bfb786a0640424f573 100644
--- a/third_party/WebKit/Source/core/html/HTMLFormElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLFormElement.idl
@@ -23,15 +23,15 @@
[
OverrideBuiltins,
] interface HTMLFormElement : HTMLElement {
- [Reflect=accept_charset] attribute DOMString acceptCharset;
- [Reflect, URL] attribute DOMString action;
- [Reflect, ReflectOnly=("on","off"), ReflectMissing="on", ReflectInvalid="on"] attribute DOMString autocomplete;
- [CustomElementCallbacks] attribute DOMString enctype;
- [CustomElementCallbacks] attribute DOMString encoding;
- [CustomElementCallbacks] attribute DOMString method;
- [Reflect] attribute DOMString name;
- [Reflect] attribute boolean noValidate;
- [Reflect] attribute DOMString target;
+ [CEReactions, Reflect=accept_charset] attribute DOMString acceptCharset;
+ [CEReactions, Reflect, URL] attribute DOMString action;
+ [CEReactions, Reflect, ReflectOnly=("on","off"), ReflectMissing="on", ReflectInvalid="on"] attribute DOMString autocomplete;
+ [CEReactions, CustomElementCallbacks] attribute DOMString enctype;
+ [CEReactions, CustomElementCallbacks] attribute DOMString encoding;
+ [CEReactions, CustomElementCallbacks] attribute DOMString method;
+ [CEReactions, Reflect] attribute DOMString name;
+ [CEReactions, Reflect] attribute boolean noValidate;
+ [CEReactions, Reflect] attribute DOMString target;
readonly attribute HTMLFormControlsCollection elements;
readonly attribute long length;
@@ -40,7 +40,7 @@
[NotEnumerable] getter (RadioNodeList or Element) (DOMString name);
[ImplementedAs=submitFromJavaScript] void submit();
- [CustomElementCallbacks] void reset();
+ [CEReactions, CustomElementCallbacks] void reset();
boolean checkValidity();
boolean reportValidity();
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLFontElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLFrameElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698