| Index: Source/core/html/HTMLSelectElement.idl
|
| diff --git a/Source/core/html/HTMLSelectElement.idl b/Source/core/html/HTMLSelectElement.idl
|
| index 76e5fc4d4b7b89260c75b1d40739a66cc0dd9d3f..3b89daa4f02af261b2a9fa593367ed4702494d96 100644
|
| --- a/Source/core/html/HTMLSelectElement.idl
|
| +++ b/Source/core/html/HTMLSelectElement.idl
|
| @@ -24,7 +24,7 @@ interface HTMLSelectElement : HTMLElement {
|
| [Reflect] attribute boolean disabled;
|
| readonly attribute HTMLFormElement form;
|
| attribute boolean multiple;
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString name;
|
| + [Reflect] attribute DOMString name;
|
| [Reflect] attribute boolean required;
|
| attribute long size;
|
|
|
| @@ -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;
|
|
|