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

Unified Diff: LayoutTests/fast/forms/input-pattern.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
« no previous file with comments | « LayoutTests/fast/forms/input-minmax-expected.txt ('k') | LayoutTests/fast/forms/input-pattern-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/forms/input-pattern.html
diff --git a/LayoutTests/fast/forms/input-pattern.html b/LayoutTests/fast/forms/input-pattern.html
index d0287d6d18c45f0fa445d7dcead3544cd67e6f93..a41bc4ad1cdd936b46d8d803aacf09d2c463a29f 100644
--- a/LayoutTests/fast/forms/input-pattern.html
+++ b/LayoutTests/fast/forms/input-pattern.html
@@ -23,8 +23,8 @@ shouldBe('input.pattern', '"bar"');
// Null.
input.pattern = null;
-shouldBe('input.pattern', '""');
-shouldBe('input.getAttribute("pattern")', 'null');
+shouldBe('input.pattern', '"null"');
+shouldBe('input.getAttribute("pattern")', '"null"');
input.setAttribute('pattern', null);
shouldBe('input.pattern', '"null"');
« no previous file with comments | « LayoutTests/fast/forms/input-minmax-expected.txt ('k') | LayoutTests/fast/forms/input-pattern-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698