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>
3 <script>
5 function boom()
6 {
7 document.getElementById("wantstobeatable").style.display = "table";
8 document.documentElement.removeAttribute("class");
9 }
11 </script>
12 </head>
14 <body onload="setTimeout(boom, 30)">
16 <table width="100%" border="1">
17 <tr>
18 <td>
19 <table border="1" width="100%" style="table-layout: fixed;">
20 <tr>
21 <td>Foo</td>
22 </tr>
23 </table>
24 </td>
25 <td width="22">Bar</td>
26 <td id="wantstobeatable">
27 <table border="1" style="table-layout: fixed;">
28 <tr>
29 <td>Baz</td>
30 </tr>
31 </table>
32 </td>
33 </tr>
34 </table>
36 </body>
38 </html>