Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / fast / forms / ValidityState-valueMissing-001.html
blobdc8887929464b814f526f03316f0b513f4a431b5
1 <html>
2 <head>
3 <title>required and basic valueMissing</title>
4 <script language="JavaScript" type="text/javascript">
5 function log(message) {
6 document.getElementById("console").innerHTML += "<li>"+message+"</li>";
9 function test() {
10 if (window.layoutTestController)
11 layoutTestController.dumpAsText();
13 v = document.getElementsByName("victim");
15 log((v[0].validity.valueMissing && v[1].validity.valueMissing) ? "SUCCESS" : "FAILURE");
17 </script>
18 </head>
19 <body onload="test()">
20 <p>There are two form control elements below, both required and blank:
21 validity.valueMissing should be true in both cases.</p>
22 <input name="victim" required/>
23 <textarea name="victim" required></textarea>
24 <hr>
25 <ol id="console"></ol>
26 </body>
27 </html>