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

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

Issue 101423002: Remove TreatNullAs=NullString for HTMLTextAreaElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase on top of HTMLSelectElement patch 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/textarea/textarea-inputmode-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/HTMLTextAreaElement.idl
diff --git a/Source/core/html/HTMLTextAreaElement.idl b/Source/core/html/HTMLTextAreaElement.idl
index a0bd1006095c607f00d5985e7c2d7d2752854315..2e01c6d037d598d36207f1ebf0dca6e7e14f8e3b 100644
--- a/Source/core/html/HTMLTextAreaElement.idl
+++ b/Source/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;
[RaisesException=Setter] attribute long maxLength;
- [Reflect, TreatNullAs=NullString] attribute DOMString name;
- [Reflect, TreatNullAs=NullString] attribute DOMString placeholder;
+ [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;
« no previous file with comments | « LayoutTests/fast/forms/textarea/textarea-inputmode-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698