diff options
author | Matthew Rasmus <mattr@zzntd.com> | 2014-11-29 13:24:29 -0800 |
---|---|---|
committer | Matthew Rasmus <mattr@zzntd.com> | 2014-12-05 12:21:31 -0800 |
commit | fd65b5f43826e526eb1dced4c93b0a63b8f49121 (patch) | |
tree | 4fd9415f1ccb8b1a236a9fa0f79fdc95c5667760 /components/script/dom/webidls/HTMLTextAreaElement.webidl | |
parent | c6aadc5bcc8fccf8a6d4bc41d2b48279fa47c4e5 (diff) | |
download | servo-fd65b5f43826e526eb1dced4c93b0a63b8f49121.tar.gz servo-fd65b5f43826e526eb1dced4c93b0a63b8f49121.zip |
Implements some HTMLTextAreaElement attributes
These attributes all reflect their own related content values, with the
exception of defaultValue, which acts as an alias for its IDL
textContent attribute.
Many of these do have default values and constraints which are currently unimplemented.
Diffstat (limited to 'components/script/dom/webidls/HTMLTextAreaElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTextAreaElement.webidl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/components/script/dom/webidls/HTMLTextAreaElement.webidl b/components/script/dom/webidls/HTMLTextAreaElement.webidl index f3fb5b3cf40..124de2015f1 100644 --- a/components/script/dom/webidls/HTMLTextAreaElement.webidl +++ b/components/script/dom/webidls/HTMLTextAreaElement.webidl @@ -7,22 +7,22 @@ interface HTMLTextAreaElement : HTMLElement { // attribute DOMString autocomplete; // attribute boolean autofocus; - // attribute unsigned long cols; + attribute unsigned long cols; // attribute DOMString dirName; attribute boolean disabled; //readonly attribute HTMLFormElement? form; // attribute DOMString inputMode; // attribute long maxLength; // attribute long minLength; - // attribute DOMString name; - // attribute DOMString placeholder; + attribute DOMString name; + attribute DOMString placeholder; // attribute boolean readOnly; - // attribute boolean required; - // attribute unsigned long rows; - // attribute DOMString wrap; + attribute boolean required; + attribute unsigned long rows; + attribute DOMString wrap; readonly attribute DOMString type; - // attribute DOMString defaultValue; + attribute DOMString defaultValue; //[TreatNullAs=EmptyString] attribute DOMString value; //readonly attribute unsigned long textLength; |