1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/399687-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,38 @@ 1.4 +<html> 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 + -moz-column-gap: 0; 1.13 +} 1.14 + 1.15 +.ocontainer { 1.16 + height: 0; 1.17 +} 1.18 + 1.19 +.overflow { 1.20 + height: 5in; 1.21 +} 1.22 + 1.23 +</style> 1.24 + 1.25 +<script> 1.26 +function boom() 1.27 +{ 1.28 + var newDiv = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); 1.29 + var colset = document.getElementById("colset"); 1.30 + colset.insertBefore(newDiv, colset.childNodes[1]); 1.31 +} 1.32 +</script> 1.33 + 1.34 +</head> 1.35 + 1.36 +<body onload="boom();"> 1.37 + 1.38 +<div id="colset"><div class="ocontainer"><div class="overflow"></div></div> </div> 1.39 + 1.40 +</body> 1.41 +</html>