1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/394237-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,38 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head> 1.6 +<style> 1.7 + 1.8 +body { 1.9 + height: 50px; 1.10 + -moz-column-count: 2; 1.11 +} 1.12 +.container { 1.13 + height: 10px; 1.14 +} 1.15 +.overflow { 1.16 + height: 100px; 1.17 +} 1.18 +.bb { 1.19 + border-bottom: solid 4px magenta; 1.20 +} 1.21 + 1.22 +</style> 1.23 + 1.24 +<script> 1.25 + 1.26 +function boom() 1.27 +{ 1.28 + document.getElementById("x").setAttribute("class", ""); 1.29 + document.getElementById("y").setAttribute("class", "bb"); 1.30 +} 1.31 + 1.32 +</script> 1.33 +</head> 1.34 + 1.35 +<body onload="boom();"> 1.36 + <div class="container"><div class="overflow" id="x"></div></div> 1.37 + <div id="y"></div> 1.38 + <div class="container"><div class="overflow"></div></div> 1.39 +</body> 1.40 + 1.41 +</html>