| <html> |
| <head> |
| <title>willValidate and a hidden control</title> |
| <script language="JavaScript" type="text/javascript"> |
| function log(message) { |
| document.getElementById("console").innerHTML += "<li>"+message+"</li>"; |
| } |
| |
| function test() { |
| if (window.layoutTestController) |
| layoutTestController.dumpAsText(); |
| |
| i = document.getElementsByTagName("input")[0]; |
| log((i.willValidate) ? "FAILURE" : "SUCCESS"); |
| } |
| </script> |
| </head> |
| <body onload="test()"> |
| <form><input name="test" type="hidden"></form> |
| <hr> |
| <ol id="console"></ol> |
| </body> |
| </html> |