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 xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2 <head><script type="text/javascript">
3 <![CDATA[
5 function boom() {
6 var tr = document.getElementById('tr');
7 th = document.createElementNS("http://www.w3.org/1999/xhtml", 'th');
8 th.setAttribute('rowspan', 9);
9 tr.appendChild(th);
10 document.documentElement.removeAttribute("class");
11 }
14 function ol(e) {
15 window.removeEventListener("load", ol, false);
16 setTimeout(boom, 400);
17 }
19 window.addEventListener("load", ol, false);
21 ]]></script>
22 </head>
23 <body><table style="border-collapse: collapse;"><tbody><tr id="tr"></tr></tbody></table></body>
24 </html>