Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / fast / forms / willvalidate-001.html
blobfd5442ee55a8bacbb2eef8f3793dfd8f35c864e7
1 <html>
2 <head>
3 <title>willValidate and form association</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 i = document.getElementsByTagName("input")[0];
15 log((i.willValidate) ? "FAILURE" : "SUCCESS");
17 </script>
18 </head>
19 <body onload="test()">
20 <input name="test">
21 <hr>
22 <ol id="console"></ol>
23 </body>
24 </html>