blob: 4c8a86ea24026908ff47e5c8a2eb43f6a374c037 [file] [log] [blame]
<html>
<script>
function crash()
{
try {
e.apply(w, ['URL']);
} catch (ex) { }
document.body.innerHTML = "PASS: null security context for URL did not crash";
if (window.testRunner)
testRunner.notifyDone();
}
function load()
{
w.close();
setTimeout(crash, 30);
}
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
e = (w = open()).eval;
</script>
<body onload="load()">
</body>
</html>