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">
3 <head>
4 <script>
6 function boom()
7 {
8 var table = document.getElementById('table');
10 var newTR = document.createElement('tr');
11 var newTD = document.createElement('td');
12 newTR.appendChild(newTD);
13 table.appendChild(newTR);
15 newTD.setAttribute('rowspan', 3);
17 document.documentElement.removeAttribute("class");
18 }
20 </script>
21 </head>
24 <body onload="setTimeout(boom, 30);">
26 <table id="table"><tr><td></td><td></td></tr></table>
28 </body>
30 </html>