1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/372237-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,33 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html class="reftest-wait"> 1.6 +<head> 1.7 +<script> 1.8 + 1.9 +function boom() 1.10 +{ 1.11 + document.getElementById("b").style.overflow = "hidden"; 1.12 + setTimeout(boom2, 30); 1.13 +} 1.14 + 1.15 +function boom2() 1.16 +{ 1.17 + document.getElementById("g").style.display = "none"; 1.18 + document.documentElement.removeAttribute("class"); 1.19 +} 1.20 + 1.21 +</script> 1.22 + 1.23 +</head> 1.24 + 1.25 +<body onload="boom();"> 1.26 + 1.27 +<div style="float: left;"> 1.28 +<div id="b" style="display: -moz-box; border: 1px solid black;"><img width="16" height="16" src="../../../testing/crashtest/images/tree.gif"/></div> 1.29 +<div style="position: fixed;"></div> 1.30 +</div> 1.31 + 1.32 +<div id="g" style="display: inline"><div></div></div> 1.33 + 1.34 +</body> 1.35 + 1.36 +</html>