1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/387876-2.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<title>Bug 387876 Test Case 2</title> 1.7 +<script> 1.8 + function tweak() { 1.9 + document.getElementById('weird').textContent += 'd'; 1.10 + document.documentElement.className = ''; 1.11 + } 1.12 +</script> 1.13 +</head> 1.14 +<body onload="setTimeout(tweak, 10);"> 1.15 + <div style="width:100%; height:0px; 1.16 + -moz-column-width: 20px; -moz-column-gap: 10px;"> 1.17 + <div style="background: lightblue;">a</div> 1.18 + <p id="weird" 1.19 + style="background: lightgreen">b c</p> 1.20 + </div> 1.21 +</body> 1.22 +</html>