summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/frames/frame-unload-crash.html
blob: 32fa8c04c56c2f974c89eec01adc87ff3fe9bac5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<html>
<head>
<script>

if (window.layoutTestController) {
    layoutTestController.waitUntilDone();
    layoutTestController.dumpAsText();
}

function done()
{
    document.getElementById("results").appendChild(document.createTextNode("PASS"));
    layoutTestController.notifyDone();
}

</script>
</head>
<body>
<p>
  This is a test for <a href="https://bugs.webkit.org/show_bug.cgi?id=25136">bug 25136</a>: <i>CRASH in DocumentLoader::removeSubresourceLoader
  due to null m_frame.</i> If successful, PASS should be printed below.
</p>
<p id="results" class="pass"></p>
<iframe style="border: 0" src="resources/frame-unload-crash-1.html">
</body>
</html>