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

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

Issue 2678343007: Modify DateComponents::parseTime to reject values with >3 fractional decimal places (Closed)
Patch Set: Updated tests Created 3 years, 10 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/time/time-validity-typemismatch-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/forms/time/time-validity-typemismatch-expected.txt b/third_party/WebKit/LayoutTests/fast/forms/time/time-validity-typemismatch-expected.txt
index 64fb0c5d7ee67c9294014b650a0e85ba8845ba5e..f7ffedf2f86e1a46adc622e24058efcd953376da 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/time/time-validity-typemismatch-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/forms/time/time-validity-typemismatch-expected.txt
@@ -10,8 +10,6 @@ PASS "23:59:59" is a correct valid time string.
PASS "23:59:59.1" is a correct valid time string.
PASS "23:59:59.12" is a correct valid time string.
PASS "23:59:59.123" is a correct valid time string.
-PASS "23:59:59.1234567890" is a correct valid time string.
-PASS "00:00:00.0000000000" is a correct valid time string.
PASS " 00:00 " is an invalid time string and was sanitized.
PASS "1:23" is an invalid time string and was sanitized.
PASS "011:11" is an invalid time string and was sanitized.
@@ -33,6 +31,8 @@ PASS "23:45:zz" is an invalid time string and was sanitized.
PASS "23:45:06." is an invalid time string and was sanitized.
PASS "23:45:06.abc" is an invalid time string and was sanitized.
PASS "23:45:06.789abc" is an invalid time string and was sanitized.
+PASS "23:59:59.1234567890" is an invalid time string and was sanitized.
+PASS "00:00:00.0000000000" is an invalid time string and was sanitized.
PASS "invalid" is an invalid time string and was sanitized while disabled.
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698