| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 window.location.assign = function() { return "new assign"; } | 4 window.location.assign = function() { return "new assign"; } |
| 5 window.location.reload = "new reload"; | 5 window.location.reload = "new reload"; |
| 6 window.location.replace = "new replace"; | 6 window.location.replace = "new replace"; |
| 7 | 7 |
| 8 window.onload = function() | 8 window.onload = function() |
| 9 { | 9 { |
| 10 if (window.testRunner) | 10 window.parent.postMessage('ready', '*'); |
| 11 testRunner.globalFlag = true; | |
| 12 } | 11 } |
| 13 </script> | 12 </script> |
| 14 </head> | 13 </head> |
| 15 <body> | 14 <body> |
| 16 </body> | 15 </body> |
| 17 </html> | 16 </html> |
| OLD | NEW |