| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../js/resources/js-test-pre.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 <iframe src="data:text/plain,iframe1" id="iframe1"></iframe> | 10 <iframe src="data:text/plain,iframe1" id="iframe1"></iframe> |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 history.pushState('newState', null, '?newState'); | 54 history.pushState('newState', null, '?newState'); |
| 55 | 55 |
| 56 window.setTimeout(function() { | 56 window.setTimeout(function() { |
| 57 wentBack = true; | 57 wentBack = true; |
| 58 debug('going back'); | 58 debug('going back'); |
| 59 history.back(); | 59 history.back(); |
| 60 }, 0); | 60 }, 0); |
| 61 } | 61 } |
| 62 var jsTestIsAsync = true; | 62 var jsTestIsAsync = true; |
| 63 </script> | 63 </script> |
| 64 <script src="../js/resources/js-test-post.js"></script> | |
| 65 </body> | 64 </body> |
| 66 </html> | 65 </html> |
| OLD | NEW |