blob: 0d885764a137a90c2b8ba64a0b59909e9e6346c6 [file] [log] [blame]
<!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>