summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/dom/document-navigation-error-no-crash.html
blob: 47fae2474da01f40a7bed90a64a2c67c3f591161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<body onload=runTest()>
<iframe src="data:text/html,"></iframe>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

function runTest() {
    var a = window.frames[0];
    document.removeChild(document.head.parentNode);
    a.location = "data:text/plain,pass";
    console.log("PASS (No crash.)");
}
</script>
</body>