| Index: core/html/HTMLFormElement.idl
|
| diff --git a/core/html/HTMLFormElement.idl b/core/html/HTMLFormElement.idl
|
| index f1bcb0efa2b966a979e932e250016fe4ac03a5c3..29a319e381501136e54b2d982797ccd8687bc73d 100644
|
| --- a/core/html/HTMLFormElement.idl
|
| +++ b/core/html/HTMLFormElement.idl
|
| @@ -19,26 +19,26 @@
|
| */
|
|
|
| interface HTMLFormElement : HTMLElement {
|
| - [Reflect=accept_charset] attribute DOMString acceptCharset;
|
| - [Reflect, URL] attribute DOMString action;
|
| - [Reflect] attribute DOMString autocomplete;
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString enctype;
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString encoding;
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString method;
|
| - [Reflect] attribute DOMString name;
|
| + [Reflect=accept_charset, TreatNullAs=NullString] attribute DOMString acceptCharset;
|
| + [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString action;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString autocomplete;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString enctype;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString encoding;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString method;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString name;
|
| [Reflect] attribute boolean noValidate;
|
| - [Reflect] attribute DOMString target;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString target;
|
|
|
| readonly attribute HTMLCollection elements;
|
| readonly attribute long length;
|
| [ImplementedAs=item] getter Node(unsigned long index);
|
| [ImplementedAs=anonymousNamedGetter, OverrideBuiltins, NotEnumerable] getter (NodeList or Node)(DOMString name);
|
|
|
| - [ImplementedAs=submitFromJavaScript] void submit();
|
| - [CustomElementCallbacks=Enable] void reset();
|
| + [ImplementedAs=submitFromJavaScript, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] void submit();
|
| + [CustomElementCallbacks] void reset();
|
| boolean checkValidity();
|
|
|
| - [EnabledAtRuntime=RequestAutocomplete] void requestAutocomplete();
|
| - [EnabledAtRuntime=RequestAutocomplete, NotEnumerable] attribute EventHandler onautocomplete;
|
| - [EnabledAtRuntime=RequestAutocomplete, NotEnumerable] attribute EventHandler onautocompleteerror;
|
| + [RuntimeEnabled=RequestAutocomplete] void requestAutocomplete();
|
| + [RuntimeEnabled=RequestAutocomplete] attribute EventHandler onautocomplete;
|
| + [RuntimeEnabled=RequestAutocomplete] attribute EventHandler onautocompleteerror;
|
| };
|
|
|