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 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="-moz-column-width: 30px;
14 -moz-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>