| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <script> | 2 <script> |
| 3 if (window.layoutTestController) { | 3 if (window.layoutTestController) { |
| 4 layoutTestController.waitUntilDone(); | 4 layoutTestController.waitUntilDone(); |
| 5 layoutTestController.dumpAsText(); | 5 layoutTestController.dumpAsText(); |
| 6 layoutTestController.dumpChildFramesAsText(); | 6 layoutTestController.dumpChildFramesAsText(); |
| 7 } | 7 } |
| 8 | 8 |
| 9 state = "initial"; | 9 state = "initial"; |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 } | 35 } |
| 36 | 36 |
| 37 window.onload = function() { | 37 window.onload = function() { |
| 38 // We need to wait for after the load event so that we get a new history | 38 // We need to wait for after the load event so that we get a new history |
| 39 // entry when navigating the frame. | 39 // entry when navigating the frame. |
| 40 setTimeout(next, 0); | 40 setTimeout(next, 0); |
| 41 } | 41 } |
| 42 </script> | 42 </script> |
| 43 <iframe src="data:text/html,Waiting..."></iframe> | 43 <iframe src="data:text/html,Waiting..."></iframe> |
| 44 </html> | 44 </html> |
| OLD | NEW |