1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/503961-2.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +<html> 1.5 +<head> 1.6 + <style> 1.7 + #colset { -moz-column-count: 3; } 1.8 + #a { height: 0; } 1.9 + #x { height: 3px; } 1.10 + #b { height: 0; } 1.11 + #c { height: 2px; } 1.12 + #d { height: 2px; } 1.13 + 1.14 + /* Following style is just for visualization -- doesn't affect assertion */ 1.15 + #colset { -moz-column-gap: 0px; width: 18px; } 1.16 + div { width: 5px; } 1.17 + #a { background: purple; } 1.18 + #x { background: orange; } 1.19 + #b { background: blue; } 1.20 + #c { background: black; } 1.21 + #d { background: lime; } 1.22 + </style> 1.23 + <script> 1.24 + function boom() 1.25 + { 1.26 + document.getElementById("a").style.height = "auto"; 1.27 + document.getElementById("c").style.height = "0"; 1.28 + } 1.29 + </script> 1.30 +</head> 1.31 +<body onload="boom()" id="colset" 1.32 + ><div id="a"><div id="x"></div></div 1.33 + ><div id="b"><div id="c"></div><div id="d"></div></div 1.34 +></body> 1.35 +</html>