OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <p id="description"></p> | 7 <p id="description"></p> |
8 <pre id="console"></pre> | 8 <pre id="console"></pre> |
9 | 9 |
10 <script> | 10 <script> |
(...skipping 28 matching lines...) Expand all Loading... |
39 } | 39 } |
40 } | 40 } |
41 | 41 |
42 function setFrameSrc() { | 42 function setFrameSrc() { |
43 document.querySelector('iframe').src = 'about:blank/#identifier'; | 43 document.querySelector('iframe').src = 'about:blank/#identifier'; |
44 } | 44 } |
45 | 45 |
46 function setFrameSrcAndfinishTest() { | 46 function setFrameSrcAndfinishTest() { |
47 document.querySelector('iframe').src = 'about:blank/#identifier'; | 47 document.querySelector('iframe').src = 'about:blank/#identifier'; |
48 testRunner.dumpBackForwardList(); | 48 testRunner.dumpBackForwardList(); |
49 finishJSTest(); | 49 setTimeout(function() { |
| 50 finishJSTest(); |
| 51 }, 0); |
50 } | 52 } |
51 </script> | 53 </script> |
52 </body> | 54 </body> |
53 </html> | 55 </html> |
OLD | NEW |