Backed out changeset 2e6f598201ce (bug 850346) because it needs a UUID change

This commit is contained in:
Ehsan Akhgari 2013-03-13 17:51:09 -04:00
parent 97bf8361b9
commit 72d38371ed
3 changed files with 3 additions and 3 deletions

View File

@ -964,7 +964,7 @@ NS_IMPL_ENUM_ATTR_DEFAULT_MISSING_INVALID_VALUES(nsHTMLInputElement, FormMethod,
"", kFormDefaultMethod->tag)
NS_IMPL_BOOL_ATTR(nsHTMLInputElement, FormNoValidate, formnovalidate)
NS_IMPL_STRING_ATTR(nsHTMLInputElement, FormTarget, formtarget)
NS_IMPL_ENUM_ATTR_DEFAULT_VALUE(nsHTMLInputElement, InputMode, inputmode,
NS_IMPL_ENUM_ATTR_DEFAULT_VALUE(nsHTMLInputElement, Inputmode, inputmode,
kInputDefaultInputmode->tag)
NS_IMPL_BOOL_ATTR(nsHTMLInputElement, Multiple, multiple)
NS_IMPL_NON_NEGATIVE_INT_ATTR(nsHTMLInputElement, MaxLength, maxlength)

View File

@ -112,7 +112,7 @@ reflectUnsignedInt({
// .inputmode
reflectLimitedEnumerated({
element: document.createElement("input"),
attribute: "inputMode",
attribute: "inputmode",
validValues: [ "numeric", "digit", "uppercase", "lowercase", "titlecase", "autocapitalized", "auto" ],
invalidValues: [ "", "foo", "tulip" ],
defaultValue: "auto"

View File

@ -43,7 +43,7 @@ interface nsIDOMHTMLInputElement : nsIDOMHTMLElement
attribute unsigned long height;
attribute boolean indeterminate;
attribute DOMString inputMode;
attribute DOMString inputmode;
readonly attribute nsIDOMHTMLElement list;
attribute DOMString max;