Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
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>