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 <body>
4 <div style="overflow: auto; transform:translate(100px,0);">
5 <div style="position: relative;"><div id="x" style="position:fixed; display:none"></div></div>
6 </div>
7 <script>
8 document.body.getBoundingClientRect();
9 document.getElementById('x').style.display = '';
10 </script>
11 </body>
12 </html>