Index: third_party/WebKit/LayoutTests/imported/wpt/html/semantics/forms/constraints/form-validation-checkValidity.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/forms/constraints/form-validation-checkValidity.html b/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/forms/constraints/form-validation-checkValidity.html |
index 429fa32819cf430f78364d8f85f3db9b72229b23..2e790c75d82dec2f60f64199ea4e1cba1164bc63 100644 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/forms/constraints/form-validation-checkValidity.html |
+++ b/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/forms/constraints/form-validation-checkValidity.html |
@@ -15,7 +15,7 @@ |
types: ["text", "search", "tel", "password"], |
testData: [ |
{conditions: {}, expected: true, name: "[target] no constraint"}, |
- {conditions: {maxLength: "4", value: "abcdef"}, expected: false, name: "[target] suffering from being too long", dirty: true}, |
+ {conditions: {maxLength: "4", value: "abcdef"}, expected: true, name: "[target] not suffering from being too long", dirty: true}, |
{conditions: {pattern: "[A-Z]", value: "abc"}, expected: false, name: "[target] suffering from a pattern mismatch"}, |
{conditions: {required: true, value: ""}, expected: false, name: "[target] suffering from being missing"} |
] |
@@ -25,7 +25,7 @@ |
types: ["url"], |
testData: [ |
{conditions: {}, expected: true, name: "[target] no constraint"}, |
- {conditions: {maxLength: "20", value: "http://www.example.com"}, expected: false, name: "[target] suffering from being too long", dirty: true}, |
+ {conditions: {maxLength: "20", value: "http://www.example.com"}, expected: true, name: "[target] suffering from being too long", dirty: true}, |
{conditions: {pattern: "http://www.example.com", value: "http://www.example.net"}, expected: false, name: "[target] suffering from a pattern mismatch"}, |
{conditions: {value: "abc"}, expected: false, name: "[target] suffering from a type mismatch"}, |
{conditions: {required: true, value: ""}, expected: false, name: "[target] suffering from being missing"} |
@@ -36,7 +36,7 @@ |
types: ["email"], |
testData: [ |
{conditions: {}, expected: true, name: "[target] no constraint"}, |
- {conditions: {maxLength: "10", value: "test@example.com"}, expected: false, name: "[target] suffering from being too long", dirty: true}, |
+ {conditions: {maxLength: "10", value: "test@example.com"}, expected: true, name: "[target] not suffering from being too long", dirty: true}, |
{conditions: {pattern: "test@example.com", value: "test@example.net"}, expected: false, name: "[target] suffering from a pattern mismatch"}, |
{conditions: {value: "abc"}, expected: false, name: "[target] suffering from a type mismatch"}, |
{conditions: {required: true, value: ""}, expected: false, name: "[target] suffering from being missing"} |