Chromium Code Reviews| Index: LayoutTests/fast/forms/ValidityState-customError.html |
| diff --git a/LayoutTests/fast/forms/ValidityState-customError.html b/LayoutTests/fast/forms/ValidityState-customError.html |
| index 3765a89351611e654aaf05d0e629c5e3c9a72621..ea7a3a1a22c2e2c818679994224bceada5721b19 100644 |
| --- a/LayoutTests/fast/forms/ValidityState-customError.html |
| +++ b/LayoutTests/fast/forms/ValidityState-customError.html |
| @@ -105,13 +105,13 @@ for (i = 0; i < v.length; i++) { |
| v[i].setCustomValidity(undefined); |
| } |
| shouldBeFalse('customErrorFor("fieldset-many-changes")'); |
| -shouldBeFalse('customErrorFor("button-many-changes")'); |
| +shouldBeTrue('customErrorFor("button-many-changes")'); |
| shouldBeFalse('customErrorFor("button-button-many-changes")'); |
| shouldBeFalse('customErrorFor("button-reset-many-changes")'); |
| -shouldBeFalse('customErrorFor("select-many-changes")'); |
| -shouldBeFalse('customErrorFor("textarea-many-changes")'); |
| -shouldBeFalse('customErrorFor("input-many-changes")'); |
| -shouldBeFalse('customErrorFor("input-submit-many-changes")'); |
| +shouldBeTrue('customErrorFor("select-many-changes")'); |
| +shouldBeTrue('customErrorFor("textarea-many-changes")'); |
| +shouldBeTrue('customErrorFor("input-many-changes")'); |
| +shouldBeTrue('customErrorFor("input-submit-many-changes")'); |
|
tkent
2015/07/03 00:39:24
Please add tests for <keygen>, <obejct>, and <outp
|
| debug('Set with three arguments.'); |
| for (i = 0; i < v.length; i++) |
| @@ -143,13 +143,13 @@ for (i = 0; i < v.length; i++) { |
| v[i].setCustomValidity(undefined); |
| } |
| shouldBeFalse('customErrorFor("fieldset-many-changes")'); |
| -shouldBeFalse('customErrorFor("button-many-changes")'); |
| +shouldBeTrue('customErrorFor("button-many-changes")'); |
| shouldBeFalse('customErrorFor("button-button-many-changes")'); |
| shouldBeFalse('customErrorFor("button-reset-many-changes")'); |
| -shouldBeFalse('customErrorFor("select-many-changes")'); |
| -shouldBeFalse('customErrorFor("textarea-many-changes")'); |
| -shouldBeFalse('customErrorFor("input-many-changes")'); |
| -shouldBeFalse('customErrorFor("input-submit-many-changes")'); |
| +shouldBeTrue('customErrorFor("select-many-changes")'); |
| +shouldBeTrue('customErrorFor("textarea-many-changes")'); |
| +shouldBeTrue('customErrorFor("input-many-changes")'); |
| +shouldBeTrue('customErrorFor("input-submit-many-changes")'); |
|
tkent
2015/07/03 00:39:24
Ditto.
|
| debug(''); |
| </script> |