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 style="border: 1px solid red; width: 6em;" class="reftest-wait">
3 <head>
4 <script type="text/javascript">
6 function f1()
7 {
8 document.getElementById("s").style.cssFloat = "left";
10 document.body.style.display = "inline";
11 document.getElementById("d").style.display = "inline";
12 document.getElementById("p").style.display = "inline";
14 setTimeout(f2, 30);
15 }
17 function f2()
18 {
19 document.getElementById("d").style.cssFloat = "left";
20 document.documentElement.removeAttribute("class");
21 }
23 </script>
24 </head>
26 <body onload="f1()">
28 TTTTT TTTTT
29 <div id="d">
30 YY
31 <p id="p">
32 ZZ
33 <span id="s">
35 </body>
37 </html>