| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <script> | |
| 3 if (window.layoutTestController) { | |
| 4 layoutTestController.dumpAsText(); | |
| 5 layoutTestController.waitUntilDone(); | |
| 6 } | |
| 7 | |
| 8 var target; | |
| 9 function check_blank() { | |
| 10 var x = target.location.private; | |
| 11 if (window.layoutTestController) | |
| 12 layoutTestController.notifyDone(); | |
| 13 } | |
| 14 | |
| 15 function reload_blank() { | |
| 16 target = window.frames[0]; | |
| 17 target.location = "about:blank"; | |
| 18 window.setTimeout("check_blank()", 100); | |
| 19 } | |
| 20 | |
| 21 window.setTimeout("reload_blank()", 100); | |
| 22 | |
| 23 </script> | |
| 24 <body> | |
| 25 The test passes if Chrome does not crash. See issue 1117082. | |
| 26 <br> | |
| 27 <iframe src="about:blank"></iframe> | |
| 28 </body> | |
| 29 </html> | |
| OLD | NEW |