387876-2.html (492B)
1 <html class="reftest-wait"> 2 <head> 3 <title>Bug 387876 Test Case 2</title> 4 <script> 5 function tweak() { 6 document.getElementById('weird').textContent += 'd'; 7 document.documentElement.className = ''; 8 } 9 </script> 10 </head> 11 <body onload="setTimeout(tweak, 10);"> 12 <div style="width:100%; height:0px; 13 column-width: 20px; column-gap: 10px;"> 14 <div style="background: lightblue;">a</div> 15 <p id="weird" 16 style="background: lightgreen">b c</p> 17 </div> 18 </body> 19 </html>