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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/constraints/form-validation-willValidate.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-willValidate.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/constraints/form-validation-willValidate.html b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/constraints/form-validation-willValidate.html
index 273429fa5662c3035b71863f2239ea5d53d186fd..6c66559a09a0168070f2520d672de79f3a1261da 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/constraints/form-validation-willValidate.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/constraints/form-validation-willValidate.html
@@ -22,16 +22,16 @@
types: ["button", "reset"],
testData: [{conditions: {}, expected: false, name: "[target] Must be barred from the constraint validation"}]
},
- //FIELDSET, OUTPUT elements should not be barred from the constraint validation
+ // FIELDSET and OUTPUT elements are not "submittable elements" and therefore never validate.
{
tag: "fieldset",
types: [],
- testData: [{conditions: {}, expected: true, name: "[target] Must not be barred from the constraint validation"}]
+ testData: [{conditions: {}, expected: false, name: "[target] The willValidate attribute must be false since FIELDSET is not a submittable element"}]
},
{
tag: "output",
types: [],
- testData: [{conditions: {}, expected: true, name: "[target] Must not be barred from the constraint validation"}]
+ testData: [{conditions: {}, expected: false, name: "[target] The willValidate attribute must be false since OUTPUT is not a submittable element"}]
},
//OBJECT, KEYGEN, elements must be barred from the constraint validation
{

Powered by Google App Engine
This is Rietveld 408576698