| 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
|
| {
|
|
|