blob: 0e4e4171db5661925b762e0ec87ac9a2cc2fc2ca [file] [log] [blame]
<html>
<head>
<title>willValidate and submit 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) ? "SUCCESS" : "FAILURE");
}
</script>
</head>
<body onload="test()">
<form><p><input name="test" type="submit"></p></form>
<hr>
<ol id="console"></ol>
</body>
</html>