gecko/docshell/base/crashtests/369126-1.html

17 lines
470 B
HTML
Raw Normal View History

2007-12-14 21:36:59 -08:00
<html class="reftest-wait">
<head>
<script>
function boom()
{
document.getElementById("frameset").removeChild(document.getElementById("frame"));
document.documentElement.removeAttribute("class");
}
</script>
</head>
<frameset id="frameset" onload="setTimeout(boom, 100)">
<frame id="frame" src="data:text/html,<body onUnload=&quot;location = 'http://www.mozilla.org/'&quot;>This frame's onunload tries to load another page.">
</frameset>
</html>