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">
2 <head>
3 <style type="text/css">
5 .a:first-letter { float: right; }
7 </style>
8 <script type="text/javascript">
10 function boom()
11 {
12 document.body.style.overflow = "auto";
13 document.body.className = "a";
15 setTimeout(boom2, 30);
16 }
18 function boom2()
19 {
20 var span = document.createElement("span");
21 document.body.appendChild(span);
23 document.documentElement.removeAttribute("class");
24 }
26 </script>
27 </head>
29 <body onload="boom();">ﺷ
30 </body>
32 </html>