OLD | NEW |
1 <html> | 1 <html> |
2 <body onload="runTest()"> | 2 <body onload="runTest()"> |
3 <div id="console"></div> | 3 <div id="console"></div> |
4 <form id="form1" style="display:none" method="post" target="test" action
="http://anything.com"></form> | 4 <form id="form1" style="display:none" method="post" target="test" action
="http://anything.com"></form> |
5 <script> | 5 <script> |
6 if (window.layoutTestController) | 6 if (window.layoutTestController) |
7 { | 7 { |
8 layoutTestController.dumpAsText(); | 8 layoutTestController.dumpAsText(); |
9 layoutTestController.waitUntilDone(); | 9 layoutTestController.waitUntilDone(); |
10 } | 10 } |
(...skipping 15 matching lines...) Expand all Loading... |
26 { | 26 { |
27 document.body.removeChild(document.getElementById('test')); | 27 document.body.removeChild(document.getElementById('test')); |
28 document.body.offsetTop; | 28 document.body.offsetTop; |
29 } | 29 } |
30 }, true); | 30 }, true); |
31 </script> | 31 </script> |
32 <iframe id="test" src="about:blank"></iframe> | 32 <iframe id="test" src="about:blank"></iframe> |
33 </body> | 33 </body> |
34 </html> | 34 </html> |
35 | 35 |
OLD | NEW |