| Index: core/html/HTMLInputElement.idl
|
| diff --git a/core/html/HTMLInputElement.idl b/core/html/HTMLInputElement.idl
|
| index fd6151d373cef78e047cf9c905cf2905bc73bf66..9782e01eb9d2535bf075e1bfe1696e84d5cc34f7 100644
|
| --- a/core/html/HTMLInputElement.idl
|
| +++ b/core/html/HTMLInputElement.idl
|
| @@ -21,50 +21,50 @@
|
|
|
| [
|
| ] interface HTMLInputElement : HTMLElement {
|
| - [Reflect] attribute DOMString accept;
|
| - [Reflect] attribute DOMString alt;
|
| - [Reflect] attribute DOMString autocomplete;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString accept;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString alt;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString autocomplete;
|
| [Reflect] attribute boolean autofocus;
|
| [Reflect=checked] attribute boolean defaultChecked;
|
| attribute boolean checked;
|
| - [Reflect] attribute DOMString dirName;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString dirName;
|
| [Reflect] attribute boolean disabled;
|
| readonly attribute HTMLFormElement form;
|
| // The 'files' attribute is intentionally not readonly.
|
| // https://www.w3.org/Bugs/Public/show_bug.cgi?id=22682
|
| attribute FileList files;
|
| - [Reflect, URL] attribute DOMString formAction;
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString formEnctype;
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString formMethod;
|
| + [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString formAction;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString formEnctype;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString formMethod;
|
| [Reflect] attribute boolean formNoValidate;
|
| - [Reflect] attribute DOMString formTarget;
|
| - [CustomElementCallbacks=Enable] attribute unsigned long height;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString formTarget;
|
| + [CustomElementCallbacks] attribute unsigned long height;
|
| attribute boolean indeterminate;
|
| - [EnabledAtRuntime=DataListElement] readonly attribute HTMLElement list;
|
| - [Reflect] attribute DOMString max;
|
| - [SetterRaisesException, CustomElementCallbacks=Enable] attribute long maxLength;
|
| - [Reflect] attribute DOMString min;
|
| + [RuntimeEnabled=DataListElement] readonly attribute HTMLElement list;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString max;
|
| + [SetterRaisesException, CustomElementCallbacks] attribute long maxLength;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString min;
|
| [Reflect] attribute boolean multiple;
|
| - [Reflect] attribute DOMString name;
|
| - [Reflect] attribute DOMString pattern;
|
| - [Reflect] attribute DOMString placeholder;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString name;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString pattern;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString placeholder;
|
| [Reflect] attribute boolean readOnly;
|
| [Reflect] attribute boolean required;
|
| - [SetterRaisesException, CustomElementCallbacks=Enable] attribute unsigned long size; // Changed string -> long -> unsigned long
|
| - [Reflect, URL] attribute DOMString src;
|
| - [Reflect] attribute DOMString step;
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString type; // readonly dropped as part of DOM level 2
|
| - [TreatNullAs=NullString, CustomElementCallbacks=Enable] attribute DOMString defaultValue;
|
| + [SetterRaisesException, CustomElementCallbacks] attribute unsigned long size; // Changed string -> long -> unsigned long
|
| + [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString src;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString step;
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString type; // readonly dropped as part of DOM level 2
|
| + [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString defaultValue;
|
| // See the discussion in https://bugs.webkit.org/show_bug.cgi?id=100085
|
| - [TreatNullAs=NullString, SetterRaisesException, CustomElementCallbacks=Enable] attribute DOMString value;
|
| - [SetterRaisesException, CustomElementCallbacks=Enable] attribute Date valueAsDate;
|
| - [SetterRaisesException, CustomElementCallbacks=Enable] attribute double valueAsNumber;
|
| - [EnabledAtRuntime=InputModeAttribute, Reflect] attribute DOMString inputMode;
|
| + [TreatNullAs=NullString, SetterRaisesException, CustomElementCallbacks] attribute DOMString value;
|
| + [SetterRaisesException, CustomElementCallbacks] attribute Date valueAsDate;
|
| + [SetterRaisesException, CustomElementCallbacks] attribute double valueAsNumber;
|
| + [RuntimeEnabled=InputModeAttribute, Reflect, TreatNullAs=NullString] attribute DOMString inputMode;
|
|
|
| - [RaisesException, CustomElementCallbacks=Enable] void stepUp(optional long n);
|
| - [RaisesException, CustomElementCallbacks=Enable] void stepDown(optional long n);
|
| + [RaisesException, CustomElementCallbacks] void stepUp(optional long n);
|
| + [RaisesException, CustomElementCallbacks] void stepDown(optional long n);
|
|
|
| - [CustomElementCallbacks=Enable] attribute unsigned long width;
|
| + [CustomElementCallbacks] attribute unsigned long width;
|
| readonly attribute boolean willValidate;
|
| readonly attribute ValidityState validity;
|
| readonly attribute DOMString validationMessage;
|
| @@ -90,13 +90,13 @@
|
| optional DOMString direction);
|
|
|
| // Non-standard attributes
|
| - [Reflect] attribute DOMString align;
|
| - [Reflect, EnabledAtRuntime=DirectoryUpload] attribute boolean webkitdirectory;
|
| - [Reflect] attribute DOMString useMap;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString align;
|
| + [Reflect, RuntimeEnabled=DirectoryUpload] attribute boolean webkitdirectory;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString useMap;
|
| [Reflect] attribute boolean incremental;
|
| - [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=SpeechInput] attribute boolean webkitSpeech;
|
| - [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=SpeechInput] attribute boolean webkitGrammar;
|
| - [Conditional=INPUT_SPEECH, NotEnumerable] attribute EventHandler onwebkitspeechchange;
|
| + [Conditional=INPUT_SPEECH, Reflect, RuntimeEnabled=SpeechInput] attribute boolean webkitSpeech;
|
| + [Conditional=INPUT_SPEECH, Reflect, RuntimeEnabled=SpeechInput] attribute boolean webkitGrammar;
|
| + [Conditional=INPUT_SPEECH] attribute EventHandler onwebkitspeechchange;
|
|
|
| // See http://www.w3.org/TR/html-media-capture/
|
| [Conditional=MEDIA_CAPTURE, Reflect] attribute boolean capture;
|
|
|