5 var result
= eval(test
);
6 document
.getElementById("results").appendChild(document
.createTextNode((result
? "PASS" : "FAIL") + ": " + test
+ "\n"));
10 if (window
.testRunner
)
11 testRunner
.dumpAsText();
13 log("document.all.item('1') == document.all.item(1)");
14 log("document.all.item('target') == document.getElementById('target')");
15 log("document.all.item('foo') == undefined");
19 <body onload=
"test()">
21 Test for
<i><a href=
"http://bugs.webkit.org/show_bug.cgi?id=11078">http://bugs.webkit.org/show_bug.cgi?id=
11078</a>
22 Forms Don't Submit (ASP Pages)
</i>.
24 <pre id=
"results"></pre>
25 <div id=
"target"></div>