blob: 77553579e2ebb260d760f7fb989a1f1ba2f5685f [file] [log] [blame]
<body>
<p>Should not crash or cause an assertion failure.</p>
<p>A JavaScript failure on the console is expected, however, as the global object is cleared when closing a frame.
It actually helps to cause database activity by throwing an exception from a callback.</p>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
}
function startTest()
{
setTimeout("document.getElementsByTagName('iframe')[0].src = 'about:blank'", 100);
if (window.testRunner)
setTimeout("testRunner.notifyDone()", 500);
}
</script>
<iframe src="resources/stress-frame.html" onload="startTest()"></iframe>
</body>