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">
2 <head>
4 <script>
6 function boo()
7 {
8 document.getElementById("td46").setAttribute("rowspan", 3);
9 document.getElementById("tbody6").appendChild(document.createTextNode('X'));
10 }
12 window.addEventListener("load", boo, false);
14 </script>
17 </head>
18 <body>
20 <table border="1">
21 <tbody id="tbody6">
22 <tr id="tr7">
23 <td>A</td>
24 <td>B</td>
25 Y
26 </tr>
27 <tr>
28 <td>C</td>
29 <td id="td46">D</td>
30 </tr>
31 </tbody>
32 </table>
34 </body>
35 </html>