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 PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>bug 282175</title>
5 <script type="text/javascript">
6 function modifyPosition2()
7 {
8 document.getElementById("table").style.position = "inherit";
9 document.body.offsetHeight;
10 document.getElementById("tr").style.position = "inherit";
11 document.getElementById("table").style.position = "fixed";
12 document.body.offsetHeight;
13 document.getElementById("table").style.position = "inherit";
14 }
15 </script>
16 </head>
17 <body onload="modifyPosition2()">
18 <table style="position: fixed" id="table">
19 <tbody style="position: inherit">
20 <tr style="position: fixed" id="tr">
21 <td>0.2 miles</td>
22 </tr>
23 </tbody>
24 </table>
25 </body>
26 </html>