1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/399843-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,64 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<style> 1.7 + 1.8 + #colset { 1.9 + width: 300pt; 1.10 + height: 2in; 1.11 + -moz-column-count: 3; 1.12 + } 1.13 + 1.14 + .container { 1.15 + height: 1in; 1.16 + } 1.17 + 1.18 + .b6 { 1.19 + height: 10in; 1.20 + } 1.21 + 1.22 + .c3 { 1.23 + position: absolute; 1.24 + } 1.25 + 1.26 + .c4 { 1.27 + height: 3in; 1.28 + } 1.29 + 1.30 +</style> 1.31 + 1.32 +<script> 1.33 + 1.34 +function boom() 1.35 +{ 1.36 + document.getElementById("x").setAttribute("class", "c4"); 1.37 + setTimeout(boom2, 10); 1.38 +} 1.39 + 1.40 +function boom2() 1.41 +{ 1.42 + document.getElementById("x").setAttribute("class", ""); 1.43 + setTimeout(boom3, 10); 1.44 +} 1.45 + 1.46 +function boom3() 1.47 +{ 1.48 + document.documentElement.removeAttribute("class"); 1.49 +} 1.50 + 1.51 +</script> 1.52 +</head> 1.53 + 1.54 +<body onload="boom();"> 1.55 + 1.56 +<div id="colset"> 1.57 + <div id="x"></div> 1.58 + <div class="container"> 1.59 + <div class="b6"></div> 1.60 + <div> 1.61 + <div class="c3"></div> 1.62 + </div> 1.63 + </div> 1.64 +</div> 1.65 + 1.66 +</body> 1.67 +</html>