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 <script>
4 function tweak() {
5 document.getElementById('p').textContent = 'below';
6 document.documentElement.className = '';
7 }
8 </script>
9 </head>
10 <body onload="tweak()">
11 <div style="-moz-column-width: 60px; height: 60px; background: yellow;">
12 title
13 <p id="p" style="background: lightgreen">
14 line
15 break
16 </p>
17 </div>
18 </body>
19 </html>