| Index: LayoutTests/fast/forms/pattern-attribute-invalid-regex.html
|
| diff --git a/LayoutTests/fast/forms/pattern-attribute-invalid-regex.html b/LayoutTests/fast/forms/pattern-attribute-invalid-regex.html
|
| deleted file mode 100644
|
| index 1352f4f6ed51584ec0d5cc848167e8dc0e166e04..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/forms/pattern-attribute-invalid-regex.html
|
| +++ /dev/null
|
| @@ -1,16 +0,0 @@
|
| -<!DOCTYPE html>
|
| -
|
| -<script src="../../fast/js/resources/js-test-pre.js"></script>
|
| -
|
| -<script>
|
| -description('Check if the pattern constraint is ignored when the regex is invalid.');
|
| -
|
| -var input = document.createElement('input');
|
| -input.pattern = '[0-9'; // missing a ]
|
| -input.value = '11';
|
| -
|
| -// pattern should have been ignored.
|
| -shouldBe('input.validity.patternMismatch', 'false');
|
| -</script>
|
| -
|
| -<script src="../../fast/js/resources/js-test-post.js"></script>
|
|
|