summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLTextAreaElement.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLTextAreaElement.idl')
-rw-r--r--WebCore/html/HTMLTextAreaElement.idl5
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/html/HTMLTextAreaElement.idl b/WebCore/html/HTMLTextAreaElement.idl
index 5d2853e..db5154e 100644
--- a/WebCore/html/HTMLTextAreaElement.idl
+++ b/WebCore/html/HTMLTextAreaElement.idl
@@ -34,16 +34,21 @@ module html {
attribute long cols;
attribute boolean disabled;
attribute boolean autofocus;
+ attribute long maxLength
+ setter raises(DOMException);
attribute [ConvertNullToNullString] DOMString name;
+ attribute [ConvertNullToNullString, Reflect] DOMString placeholder;
attribute boolean readOnly;
attribute boolean required;
attribute long rows;
readonly attribute DOMString type;
attribute [ConvertNullToNullString] DOMString value;
+ readonly attribute unsigned long textLength;
void select();
readonly attribute boolean willValidate;
+ boolean checkValidity();
void setCustomValidity(in [ConvertUndefinedOrNullToNullString] DOMString error);
// WinIE & FireFox extension: