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

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

Issue 60733023: Remove TreatNullAs=NullString for HTMLFormElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update test Created 7 years, 1 month 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/dom/element-attribute-js-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/HTMLFormElement.idl
diff --git a/Source/core/html/HTMLFormElement.idl b/Source/core/html/HTMLFormElement.idl
index 29a319e381501136e54b2d982797ccd8687bc73d..6ba5f418c0104826be8bb82ec0f8cc62aed0ba29 100644
--- a/Source/core/html/HTMLFormElement.idl
+++ b/Source/core/html/HTMLFormElement.idl
@@ -19,15 +19,15 @@
*/
interface HTMLFormElement : HTMLElement {
- [Reflect=accept_charset, TreatNullAs=NullString] attribute DOMString acceptCharset;
- [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString action;
- [Reflect, TreatNullAs=NullString] attribute DOMString autocomplete;
- [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString enctype;
- [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString encoding;
- [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString method;
- [Reflect, TreatNullAs=NullString] attribute DOMString name;
+ [Reflect=accept_charset] attribute DOMString acceptCharset;
+ [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString action;
+ [Reflect] attribute DOMString autocomplete;
+ [CustomElementCallbacks] attribute DOMString enctype;
+ [CustomElementCallbacks] attribute DOMString encoding;
+ [CustomElementCallbacks] attribute DOMString method;
+ [Reflect] attribute DOMString name;
[Reflect] attribute boolean noValidate;
- [Reflect, TreatNullAs=NullString] attribute DOMString target;
+ [Reflect] attribute DOMString target;
readonly attribute HTMLCollection elements;
readonly attribute long length;
« no previous file with comments | « LayoutTests/fast/dom/element-attribute-js-null-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698