Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
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 -moz-column-width: 20px; -moz-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>