1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/342322-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 + 1.7 +<script type="text/javascript"> 1.8 + 1.9 +function boom() 1.10 +{ 1.11 + var q1 = document.getElementById("q1"); 1.12 + var q2 = document.getElementById("q2"); 1.13 + 1.14 + q1.style.cssFloat = "right" 1.15 + q2.style.cssFloat = "right" 1.16 + 1.17 + setTimeout(function(){ 1.18 + q1.style.cssFloat = "none"; 1.19 + document.documentElement.removeAttribute("class"); 1.20 + }, 30); 1.21 +} 1.22 + 1.23 +</script> 1.24 + 1.25 +</head> 1.26 + 1.27 +<body onload="setTimeout(boom, 30);"> 1.28 + <b id="q1">AAA</b> 1.29 + <b id="q2">BBB</b> 1.30 +</body> 1.31 +</html>