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

Unified Diff: LayoutTests/fast/forms/input-inputmode.html

Issue 98383004: Remove TreatNullAs=NullString for HTMLInputElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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
Index: LayoutTests/fast/forms/input-inputmode.html
diff --git a/LayoutTests/fast/forms/input-inputmode.html b/LayoutTests/fast/forms/input-inputmode.html
index c559f3c6fedf777f732f9eee5d3fd8ab91347335..4ffb56584f96e62eb3e6bcd42aff0f0877ef0dba 100644
--- a/LayoutTests/fast/forms/input-inputmode.html
+++ b/LayoutTests/fast/forms/input-inputmode.html
@@ -26,8 +26,8 @@ shouldBe('input.getAttribute("inputmode")', '""');
// Null.
debug('Setting null to inputMode:');
input.inputMode = null;
-shouldBe('input.inputMode', '""');
-shouldBe('input.getAttribute("inputmode")', 'null');
+shouldBe('input.inputMode', '"null"');
+shouldBe('input.getAttribute("inputmode")', '"null"');
input.setAttribute('inputmode', null);
shouldBe('input.inputMode', '"null"');

Powered by Google App Engine
This is Rietveld 408576698