6 testRunner
.dumpAsText();
7 testRunner
.waitUntilDone();
12 var button
= document
.getElementById("test");
13 button
.insertBefore(document
.createElement("tbody"), null);
14 document
.body
.offsetTop
;
15 document
.body
.removeChild(button
);
17 var result
= document
.createElement("div");
18 result
.innerHTML
= "PASS";
19 document
.body
.appendChild(result
);
20 if (window
.testRunner
)
21 testRunner
.notifyDone();
25 <body onload=
"runTest()">