| Index: core/html/HTMLTextAreaElement.idl
|
| diff --git a/core/html/HTMLTextAreaElement.idl b/core/html/HTMLTextAreaElement.idl
|
| index fc3b1ffb2e78334df1533727fe1ac7f549a3494e..e5d79264392ba634df58527b95bc194cf2b58538 100644
|
| --- a/core/html/HTMLTextAreaElement.idl
|
| +++ b/core/html/HTMLTextAreaElement.idl
|
| @@ -22,20 +22,20 @@
|
| interface HTMLTextAreaElement : HTMLElement {
|
| [Reflect] attribute boolean autofocus;
|
| attribute long cols;
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString dirName;
|
| + [Reflect] attribute DOMString dirName;
|
| [Reflect] attribute boolean disabled;
|
| - readonly attribute HTMLFormElement form;
|
| - [SetterRaisesException] attribute long maxLength;
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString name;
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString placeholder;
|
| + [ImplementedAs=formOwner] readonly attribute HTMLFormElement form;
|
| + [RaisesException=Setter] attribute long maxLength;
|
| + [Reflect] attribute DOMString name;
|
| + [Reflect] attribute DOMString placeholder;
|
| [Reflect] attribute boolean readOnly;
|
| [Reflect] attribute boolean required;
|
| attribute long rows;
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString wrap;
|
| - [RuntimeEnabled=InputModeAttribute, Reflect, TreatNullAs=NullString] attribute DOMString inputMode;
|
| + [Reflect] attribute DOMString wrap;
|
| + [RuntimeEnabled=InputModeAttribute, Reflect] attribute DOMString inputMode;
|
|
|
| readonly attribute DOMString type;
|
| - [TreatNullAs=NullString] attribute DOMString defaultValue;
|
| + attribute DOMString defaultValue;
|
| [TreatNullAs=NullString] attribute DOMString value;
|
| readonly attribute unsigned long textLength;
|
|
|
|
|