diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLInputElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLInputElement.webidl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/webidls/HTMLInputElement.webidl b/components/script/dom/webidls/HTMLInputElement.webidl index 1caa9137e0b..a418f50928c 100644 --- a/components/script/dom/webidls/HTMLInputElement.webidl +++ b/components/script/dom/webidls/HTMLInputElement.webidl @@ -10,7 +10,7 @@ interface HTMLInputElement : HTMLElement { // attribute DOMString autocomplete; // attribute boolean autofocus; // attribute boolean defaultChecked; - // attribute boolean checked; + attribute boolean checked; // attribute DOMString dirName; attribute boolean disabled; //readonly attribute HTMLFormElement? form; @@ -29,17 +29,17 @@ interface HTMLInputElement : HTMLElement { // attribute DOMString min; // attribute long minLength; // attribute boolean multiple; - // attribute DOMString name; + attribute DOMString name; // attribute DOMString pattern; // attribute DOMString placeholder; // attribute boolean readOnly; // attribute boolean required; - // attribute unsigned long size; + attribute unsigned long size; // attribute DOMString src; // attribute DOMString step; - // attribute DOMString type; + // attribute DOMString type; //XXXjdm need binaryName // attribute DOMString defaultValue; - //[TreatNullAs=EmptyString] attribute DOMString value; + [TreatNullAs=EmptyString] attribute DOMString value; // attribute Date? valueAsDate; // attribute unrestricted double valueAsNumber; // attribute double valueLow; |