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 boom()
7 {
8 document.getElementById('A').setAttribute('colspan', 0);
9 document.getElementById('B').setAttribute('rowspan', 3);
10 }
12 </script>
14 </head>
16 <body onload="boom();">
18 <table>
19 <tr>
20 <td id="A">TD</td>
21 <td id="B" colspan="3">TD</td>
22 </tr>
23 </table>
25 </body>
26 </html>