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

Unified Diff: LayoutTests/fast/dom/element-attribute-js-null.html

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
Index: LayoutTests/fast/dom/element-attribute-js-null.html
diff --git a/LayoutTests/fast/dom/element-attribute-js-null.html b/LayoutTests/fast/dom/element-attribute-js-null.html
index 006099e9957307b4c66a7c54081fd19a50caf9b3..585b1f76e6e12c4e11ed039abf076393e083b270 100644
--- a/LayoutTests/fast/dom/element-attribute-js-null.html
+++ b/LayoutTests/fast/dom/element-attribute-js-null.html
@@ -248,13 +248,14 @@
type: 'HTMLFormElement',
elementToUse: document.createElement('form'),
attributes: [
- {name: 'name', expectedNull: ''},
- {name: 'acceptCharset', expectedNull: ''},
- {name: 'action', expectedNull: ''},
- {name: 'encoding', expectedNull: 'application/x-www-form-urlencoded'},
+ {name: 'acceptCharset', expectedNull: 'null'},
+ {name: 'action', expectedNull: 'null', isUrl: true},
+ {name: 'autocomplete', expectedNull: 'null'},
{name: 'enctype', expectedNull: 'application/x-www-form-urlencoded'},
+ {name: 'encoding', expectedNull: 'application/x-www-form-urlencoded'},
{name: 'method', expectedNull: 'get'},
- {name: 'target', expectedNull: ''}
+ {name: 'name', expectedNull: 'null'},
+ {name: 'target', expectedNull: 'null'}
]
},
{

Powered by Google App Engine
This is Rietveld 408576698