| Index: LayoutTests/fast/forms/fieldset/validation-message.html
|
| diff --git a/LayoutTests/fast/forms/fieldset/validation-message.html b/LayoutTests/fast/forms/fieldset/validation-message.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..84de041fc77f9c1706e826f067aaf7ac8c23754f
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/forms/fieldset/validation-message.html
|
| @@ -0,0 +1,16 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<script src="../../../resources/js-test.js"></script>
|
| +<body>
|
| +<form>
|
| + <fieldset>
|
| + <input type="text" required>
|
| + </fieldset>
|
| + <button id='aButton'>Submit<button>
|
| +</form>
|
| +<script>
|
| + var buttonid = document.getElementById('aButton');
|
| + buttonid.click();
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|