OLD | NEW |
1 <html> | 1 <html> |
2 <script> | 2 <script> |
3 function crash() | 3 function crash() |
4 { | 4 { |
5 try { | 5 try { |
6 e.apply(w, ['webkitURL']); | 6 e.apply(w, ['webkitURL']); |
7 } catch (ex) { } | 7 } catch (ex) { } |
8 document.body.innerHTML = "PASS: null security context for DOMURL did not cr
ash"; | 8 document.body.innerHTML = "PASS: null security context for DOMURL did not cr
ash"; |
9 if (window.layoutTestController) | 9 if (window.layoutTestController) |
10 layoutTestController.notifyDone(); | 10 layoutTestController.notifyDone(); |
(...skipping 10 matching lines...) Expand all Loading... |
21 layoutTestController.setCanOpenWindows(); | 21 layoutTestController.setCanOpenWindows(); |
22 layoutTestController.setCloseRemainingWindowsWhenComplete(true); | 22 layoutTestController.setCloseRemainingWindowsWhenComplete(true); |
23 layoutTestController.waitUntilDone(); | 23 layoutTestController.waitUntilDone(); |
24 } | 24 } |
25 | 25 |
26 e = (w = open()).eval; | 26 e = (w = open()).eval; |
27 </script> | 27 </script> |
28 <body onload="load()"> | 28 <body onload="load()"> |
29 </body> | 29 </body> |
30 </html> | 30 </html> |
OLD | NEW |