1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/469859-1.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head> 1.6 +<style id="ss" type="text/css"> 1.7 + 1.8 +#o { 1.9 + height: 65px; 1.10 +} 1.11 + 1.12 +</style> 1.13 +<script type="text/javascript"> 1.14 + 1.15 +function boom() 1.16 +{ 1.17 + document.getElementById("ss").disabled = true; 1.18 + document.documentElement.offsetHeight; 1.19 + document.getElementById("ss").disabled = false; 1.20 +} 1.21 + 1.22 +</script> 1.23 +</head> 1.24 +<body onload="boom();"> 1.25 + 1.26 +<div style="-moz-column-width: 0;"> 1.27 + <colgroup></colgroup> 1.28 + <div> 1.29 + <div id="o" style="float: left;"></div> 1.30 + <div style="clear: both;">A B<div style="float: left;"></div></div> 1.31 + </div> 1.32 +</div> 1.33 + 1.34 +</body> 1.35 +</html>