1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/docshell/base/crashtests/369126-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<script> 1.7 +function boom() 1.8 +{ 1.9 + document.getElementById("frameset").removeChild(document.getElementById("frame")); 1.10 + document.documentElement.removeAttribute("class"); 1.11 +} 1.12 +</script> 1.13 +</head> 1.14 + 1.15 +<frameset id="frameset" onload="setTimeout(boom, 100)"> 1.16 + <frame id="frame" src="data:text/html,<body onUnload="location = 'http://www.mozilla.org/'">This frame's onunload tries to load another page."> 1.17 +</frameset> 1.18 + 1.19 +</html>