diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLSelectElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLSelectElement.webidl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/components/script/dom/webidls/HTMLSelectElement.webidl b/components/script/dom/webidls/HTMLSelectElement.webidl index 1fe48bcefb2..91258f88ee8 100644 --- a/components/script/dom/webidls/HTMLSelectElement.webidl +++ b/components/script/dom/webidls/HTMLSelectElement.webidl @@ -16,8 +16,8 @@ interface HTMLSelectElement : HTMLElement { attribute boolean multiple; [CEReactions] attribute DOMString name; - // [CEReactions] - // attribute boolean required; + [CEReactions] + attribute boolean required; [CEReactions] attribute unsigned long size; @@ -41,12 +41,12 @@ interface HTMLSelectElement : HTMLElement { attribute long selectedIndex; attribute DOMString value; - // readonly attribute boolean willValidate; + readonly attribute boolean willValidate; readonly attribute ValidityState validity; - // readonly attribute DOMString validationMessage; - // boolean checkValidity(); - // boolean reportValidity(); - // void setCustomValidity(DOMString error); + readonly attribute DOMString validationMessage; + boolean checkValidity(); + boolean reportValidity(); + void setCustomValidity(DOMString error); readonly attribute NodeList labels; }; |