diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLTextAreaElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTextAreaElement.webidl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/script/dom/webidls/HTMLTextAreaElement.webidl b/components/script/dom/webidls/HTMLTextAreaElement.webidl index b09200f1dc5..b726946bc48 100644 --- a/components/script/dom/webidls/HTMLTextAreaElement.webidl +++ b/components/script/dom/webidls/HTMLTextAreaElement.webidl @@ -43,12 +43,12 @@ interface HTMLTextAreaElement : HTMLElement { attribute [TreatNullAs=EmptyString] DOMString value; readonly attribute unsigned long textLength; - // readonly attribute boolean willValidate; - // readonly attribute ValidityState validity; - // readonly attribute DOMString validationMessage; - // boolean checkValidity(); - // boolean reportValidity(); - // void setCustomValidity(DOMString error); + readonly attribute boolean willValidate; + readonly attribute ValidityState validity; + readonly attribute DOMString validationMessage; + boolean checkValidity(); + boolean reportValidity(); + void setCustomValidity(DOMString error); readonly attribute NodeList labels; |