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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/constraints/form-validation-validity-valid.html

Issue 2645553002: Import wpt@fd6560f225668e933bfb147ee0e20d5971a0d21f (Closed)
Patch Set: Modify TestExpectations or download new baselines for tests. Created 3 years, 11 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/external/wpt/html/semantics/forms/constraints/form-validation-validity-valid.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/constraints/form-validation-validity-valid.html b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/constraints/form-validation-validity-valid.html
index 5dacfeae3a0040b08d12b97e010f68933515a7b8..cec5dcbf0d5cfb340e100a82e723e1d620d16399 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/constraints/form-validation-validity-valid.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/constraints/form-validation-validity-valid.html
@@ -62,7 +62,8 @@
testData: [
{conditions: {max: "2000-01", value: "2001-01"}, expected: false, name: "[target] validity.valid must be false if validity.rangeOverflow is true"},
{conditions: {min: "2001-01", value: "2000-01"}, expected: false, name: "[target] validity.valid must be false if validity.rangeUnderflow is true"},
- {conditions: {step: 2 * 1 * 1, value: "2001-03"}, expected: false, name: "[target] validity.valid must be false if validity.stepMismatch is true"},
+ // Step checks that "months since Jan 1970" is evenly divisible by `step`
+ {conditions: {step: 3, value: "2001-02"}, expected: false, name: "[target] validity.valid must be false if validity.stepMismatch is true"},
{conditions: {required: true, value: ""}, expected: false, name: "[target] validity.valid must be false if validity.valueMissing is true"}
]
},

Powered by Google App Engine
This is Rietveld 408576698