Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <!DOCTYPE HTML>
2 <html class="reftest-wait">
3 <head>
4 <style>
5 .test {
6 position:fixed;
7 display:none;
8 width:100px; height:100px;
9 background:yellow;
10 }
11 .doTest .test {
12 display:block;
13 }
14 </style>
15 </head>
16 <body>
17 <div style="transform:translate(10px,0); overflow:scroll; width:200px; height:200px;">
18 <div class="test"></div>
19 </div>
20 <script>
21 function doTest() {
22 document.documentElement.setAttribute("class", "doTest");
23 }
24 window.addEventListener("MozReftestInvalidate", doTest, false);
25 </script>
26 </body>
27 </html>