1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/307979-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 + 1.7 +<title>Crash testcase</title> 1.8 + 1.9 +<script> 1.10 + 1.11 +function foo() 1.12 +{ 1.13 + document.body.appendChild(document.createElement('frameset')); 1.14 + setTimeout(bar, 30); 1.15 +} 1.16 + 1.17 +function bar() 1.18 +{ 1.19 + document.body.style.display = '-moz-groupbox'; 1.20 + document.documentElement.removeAttribute("class"); 1.21 +} 1.22 + 1.23 +</script> 1.24 + 1.25 +</head> 1.26 + 1.27 +<body onload="setTimeout(foo, 30);"> 1.28 + 1.29 +</body> 1.30 +</html>