| Index: core/html/HTMLSelectElement.idl
|
| diff --git a/core/html/HTMLSelectElement.idl b/core/html/HTMLSelectElement.idl
|
| index 477af63540ca1fd430c392632efd49da40d8c8e5..b61f5128247c82b9d06814027b2c1478e3746cb6 100644
|
| --- a/core/html/HTMLSelectElement.idl
|
| +++ b/core/html/HTMLSelectElement.idl
|
| @@ -22,16 +22,16 @@
|
| interface HTMLSelectElement : HTMLElement {
|
| [Reflect] attribute boolean autofocus;
|
| [Reflect] attribute boolean disabled;
|
| - readonly attribute HTMLFormElement form;
|
| + [ImplementedAs=formOwner] readonly attribute HTMLFormElement form;
|
| attribute boolean multiple;
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString name;
|
| + [Reflect] attribute DOMString name;
|
| [Reflect] attribute boolean required;
|
| attribute long size;
|
|
|
| readonly attribute DOMString type;
|
|
|
| readonly attribute HTMLOptionsCollection options;
|
| - [SetterRaisesException] attribute unsigned long length;
|
| + [RaisesException=Setter] attribute unsigned long length;
|
|
|
| getter Node item(unsigned long index);
|
| [ImplementedAs=anonymousIndexedSetter, RaisesException] setter HTMLOptionElement (unsigned long index, [TreatNullAs=anonymousIndexedSetterRemove, TreatUndefinedAs=anonymousIndexedSetterRemove] HTMLOptionElement value);
|
| @@ -43,7 +43,7 @@ interface HTMLSelectElement : HTMLElement {
|
| [RaisesException] void remove();
|
| readonly attribute HTMLCollection selectedOptions;
|
| attribute long selectedIndex;
|
| - [TreatNullAs=NullString] attribute DOMString value;
|
| + attribute DOMString value;
|
|
|
| readonly attribute boolean willValidate;
|
| readonly attribute ValidityState validity;
|
|
|