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 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 function doTest() {
6 document.getElementById("t").style.display = "table-row";
7 }
8 </script>
9 </head>
10 <body onload="doTest()">
11 <table style="border-collapse: collapse">
12 <tr style="display: block; border: 5px solid">
13 <td>LongLongLong</td>
14 </tr>
15 <tr style="display: none; border: 5px solid" id="t">
16 <td>Short</td>
17 </tr>
18 </table>
19 </body>
20 </html>