Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <script>
5 function tweak() {
6 var b = document.getElementsByTagName("span")[0];
7 b.parentNode.removeChild(b);
8 document.documentElement.removeAttribute("class");
9 }
10 window.addEventListener("MozReftestInvalidate", tweak, false);
11 </script>
12 </head>
13 <body>
14 <div style="-moz-column-count: 2;
15 height: 50px;
16 width: 100px;
17 background: yellow">
18 <span>0 1 2 3 4 5 6 7 8 9 0</span>a
19 </div>
20 </body>
21 </html>