| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <div id="console"></div> | |
| <script> | |
| window.open = function () { alert("FAIL: Visible in isolated world."); }; | |
| if (window.testRunner) { | |
| testRunner.dumpAsText(); | |
| testRunner.evaluateScriptInIsolatedWorld( | |
| 0, | |
| "window.open = function () { alert('PASS'); };\n" + | |
| "document.open(1, 2, 3);"); | |
| } | |
| </script> | |
| </body> | |
| </html> |