| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <script> | 2 <script> |
| 3 if (window.layoutTestController) { | 3 if (window.layoutTestController) { |
| 4 layoutTestController.dumpAsText(); | 4 layoutTestController.dumpAsText(); |
| 5 layoutTestController.waitUntilDone(); | 5 layoutTestController.waitUntilDone(); |
| 6 } | 6 } |
| 7 | 7 |
| 8 window.onload = function() | 8 window.onload = function() |
| 9 { | 9 { |
| 10 if (location.hash == "#2") { | 10 if (location.hash == "#2") { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 } | 53 } |
| 54 | 54 |
| 55 function finishTest() | 55 function finishTest() |
| 56 { | 56 { |
| 57 document.body.appendChild(element1); | 57 document.body.appendChild(element1); |
| 58 setTimeout(function () { location.reload() }, 0); | 58 setTimeout(function () { location.reload() }, 0); |
| 59 } | 59 } |
| 60 | 60 |
| 61 </script> | 61 </script> |
| 62 </html> | 62 </html> |
| OLD | NEW |