387876-1.html (507B)
1 <html class="reftest-wait"> 2 <head> 3 <title>Bug 387876 Test Case 1</title> 4 <script> 5 function tweak() { 6 document.getElementById('weirdDiv').textContent += 'b'; 7 document.documentElement.className = ''; 8 } 9 </script> 10 </head> 11 <body onload="setTimeout(tweak, 10);"> 12 The yellow box should say 'ab'. 13 <div style="column-width: 30px; 14 column-gap: 0px; 15 height: 0px; 16 "> 17 <div id="weirdDiv" 18 style="background: yellow;">a</div> 19 z 20 </div> 21 </body> 22 </html>