| 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();
|
| };
|
|
|