Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <html class="reftest-wait">
3 <head>
7 <script>
9 function foo()
10 {
11 setTimeout(bar, 30);
12 }
14 function bar()
15 {
16 document.getElementById("TT").style.position = "absolute";
17 document.documentElement.removeAttribute("class");
18 }
20 </script>
22 </head>
24 <body onload="foo();">
27 <div id="TT"><div style="position: fixed;"><div style="display: -moz-box;"><div style="float: left;"></div></div></div></div>
29 </body>
31 </html>