| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <html> |
| <head> |
| <script src="../../resources/js-test-pre.js"></script> |
| </head> |
| <body> |
| <p id="description"></p> |
| <form method="get" id="sad_form"> |
| <input name="victim" type="text" required/> |
| <input name="victim" type="text" pattern="Lorem ipsum" value="Loremipsum"/> |
| <textarea name="victim" required></textarea> |
| </form> |
| <div id="console"></div> |
| <script> |
| description("This test checks if the invalid event is correctly handled by document.oninvalid handler."); |
| |
| document.oninvalid = testPassed('Handled'); |
| |
| if (document.getElementById("sad_form").checkValidity()) |
| testFailed('checkValidity should have returned false'); |
| </script> |
| <script src="../../resources/js-test-post.js"></script> |
| </body> |
| </html> |