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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/number/number-validity-typemismatch-expected.txt

Issue 1378613005: input[type=number] should not accept numbers ending with '.'. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months 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: third_party/WebKit/LayoutTests/fast/forms/number/number-validity-typemismatch-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/forms/number/number-validity-typemismatch-expected.txt b/third_party/WebKit/LayoutTests/fast/forms/number/number-validity-typemismatch-expected.txt
index 0df52d1a8c3a775bc819f1f0656f4fb3f1925de5..310d627ab6cb3570174b0bde3184cf38d4fd30cc 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/number/number-validity-typemismatch-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/forms/number/number-validity-typemismatch-expected.txt
@@ -20,6 +20,8 @@ PASS "0xff" was sanitized to "".
PASS "+1" was sanitized to "".
PASS " 10" was sanitized to "".
PASS "10 " was sanitized to "".
+PASS "0." was sanitized to "".
+PASS "1." was sanitized to "".
PASS "1,2" was sanitized to "".
PASS "1E" was sanitized to "".
PASS "NaN" was sanitized to "".
@@ -30,8 +32,7 @@ PASS "Infinity" was sanitized to "".
PASS "infinity" was sanitized to "".
PASS "" is a valid number.
PASS "1.2E65535" was sanitized to "".
-PASS "1." is a valid number.
-PASS "1.2e10" is a valid number.
+PASS "1.2e10" was sanitized to "1.2e10".
PASS "invalid" is a valid number when disabled.
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698