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

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

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
Index: LayoutTests/fast/forms/textarea/textarea-inputmode.html
diff --git a/LayoutTests/fast/forms/textarea/textarea-inputmode.html b/LayoutTests/fast/forms/textarea/textarea-inputmode.html
index df4efc3fd336c5fea828138ecbb9fbb9c2c98a6e..ee8a965838f8b6e1d8254f78ba2cc57ca2dce29d 100644
--- a/LayoutTests/fast/forms/textarea/textarea-inputmode.html
+++ b/LayoutTests/fast/forms/textarea/textarea-inputmode.html
@@ -26,8 +26,8 @@ shouldBe('textarea.getAttribute("inputmode")', '""');
// Null.
debug('Setting null to inputMode:');
textarea.inputMode = null;
-shouldBe('textarea.inputMode', '""');
-shouldBe('textarea.getAttribute("inputmode")', 'null');
+shouldBe('textarea.inputMode', '"null"');
+shouldBe('textarea.getAttribute("inputmode")', '"null"');
textarea.setAttribute('inputmode', null);
shouldBe('textarea.inputMode', '"null"');

Powered by Google App Engine
This is Rietveld 408576698