1 <body onload=
"runTest()">
4 if (window
.testRunner
) {
5 testRunner
.dumpAsText();
7 var form
= document
.createElement('form');
8 var input
= document
.createElement('input');
9 input
.setAttribute("name", "test_field");
10 form
.appendChild(input
);
12 var message
= "Failed";
18 var console
= document
.getElementById("console");
19 var text
= document
.createTextNode(message
);
20 console
.appendChild(text
);
23 <p>This tests looking up form elements from a form that is not yet appended to a document. See bug
10188.
</p>