diff options
Diffstat (limited to 'Source/WebCore/html/HTMLTextAreaElement.idl')
-rw-r--r-- | Source/WebCore/html/HTMLTextAreaElement.idl | 69 |
1 files changed, 33 insertions, 36 deletions
diff --git a/Source/WebCore/html/HTMLTextAreaElement.idl b/Source/WebCore/html/HTMLTextAreaElement.idl index 729e6dae6..df8867ace 100644 --- a/Source/WebCore/html/HTMLTextAreaElement.idl +++ b/Source/WebCore/html/HTMLTextAreaElement.idl @@ -19,49 +19,46 @@ * Boston, MA 02110-1301, USA. */ -module html { +interface HTMLTextAreaElement : HTMLElement { + [Reflect] attribute boolean autofocus; + attribute long cols; + [Reflect] attribute DOMString dirName; + [Reflect] attribute boolean disabled; + readonly attribute HTMLFormElement form; + attribute long maxLength setter raises(DOMException); + [Reflect] attribute DOMString name; + [Reflect] attribute DOMString placeholder; + [Reflect] attribute boolean readOnly; + [Reflect] attribute boolean required; + attribute long rows; + [Reflect] attribute DOMString wrap; - interface HTMLTextAreaElement : HTMLElement { - attribute [Reflect] boolean autofocus; - attribute long cols; - attribute [Reflect] DOMString dirName; - attribute [Reflect] boolean disabled; - readonly attribute HTMLFormElement form; - attribute long maxLength setter raises(DOMException); - attribute [Reflect] DOMString name; - attribute [Reflect] DOMString placeholder; - attribute [Reflect] boolean readOnly; - attribute [Reflect] boolean required; - attribute long rows; - attribute [Reflect] DOMString wrap; + readonly attribute DOMString type; + [TreatNullAs=NullString] attribute DOMString defaultValue; + [TreatNullAs=NullString] attribute DOMString value; + readonly attribute unsigned long textLength; - readonly attribute DOMString type; - attribute [TreatNullAs=NullString] DOMString defaultValue; - attribute [TreatNullAs=NullString] DOMString value; - readonly attribute unsigned long textLength; + readonly attribute boolean willValidate; + readonly attribute ValidityState validity; + readonly attribute DOMString validationMessage; + boolean checkValidity(); + void setCustomValidity(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error); - readonly attribute boolean willValidate; - readonly attribute ValidityState validity; - readonly attribute DOMString validationMessage; - boolean checkValidity(); - void setCustomValidity(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error); + readonly attribute NodeList labels; - readonly attribute NodeList labels; - - void select(); - attribute long selectionStart; - attribute long selectionEnd; - attribute DOMString selectionDirection; + void select(); + attribute long selectionStart; + attribute long selectionEnd; + attribute DOMString selectionDirection; #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C - void setSelectionRange(in long start, in long end); + void setSelectionRange(in long start, in long end); #else - void setSelectionRange(in [Optional=DefaultIsUndefined] long start, - in [Optional=DefaultIsUndefined] long end, - in [Optional] DOMString direction); + void setSelectionRange(in [Optional=DefaultIsUndefined] long start, + in [Optional=DefaultIsUndefined] long end, + in [Optional] DOMString direction); #endif #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C - attribute [Reflect] DOMString accessKey; + [Reflect] attribute DOMString accessKey; #endif - }; -} +}; |