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>";
10 if (window
.layoutTestController
)
11 layoutTestController
.dumpAsText();
13 i
= document
.getElementsByTagName("input")[0];
15 log((i
.willValidate
) ? "FAILURE" : "SUCCESS");
19 <body onload=
"test()">
22 <ol id=
"console"></ol>