Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(632)

Unified Diff: Source/core/html/HTMLSelectElement.idl

Issue 101573002: Remove TreatNullAs=NullString for HTMLSelectElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/fast/forms/select-value-null-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « LayoutTests/fast/forms/select-value-null-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698