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>
4 <style id="s"></style>
6 <script>
8 window.addEventListener("load", f1, false);
10 function f1()
11 {
12 document.getElementsByTagName('head')[0].style.display = "table-row-group";
13 setTimeout(f2, 30);
14 }
16 function f2()
17 {
18 document.body.style.display = "table-caption";
19 setTimeout(f3, 30);
20 }
22 function f3()
23 {
24 document.body.style.display = "table-column-group";
25 document.getElementById('s').textContent += "body { }";
26 document.documentElement.removeAttribute("class");
27 }
29 </script>
31 </head>
33 <body>
35 <span style="position: absolute">f</span>
37 </body>
38 </html>