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.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html class="reftest-wait"> |
michael@0 | 3 | <head> |
michael@0 | 4 | <style> |
michael@0 | 5 | #d { |
michael@0 | 6 | transition:opacity 1s; |
michael@0 | 7 | } |
michael@0 | 8 | #p { |
michael@0 | 9 | position:absolute; |
michael@0 | 10 | } |
michael@0 | 11 | </style> |
michael@0 | 12 | </head> |
michael@0 | 13 | <body> |
michael@0 | 14 | <div id="d"> |
michael@0 | 15 | Hello |
michael@0 | 16 | <span id="s"><div id="p">Kitty</div></span> |
michael@0 | 17 | </div> |
michael@0 | 18 | <script> |
michael@0 | 19 | var d = document.getElementById("d"); |
michael@0 | 20 | d.getBoundingClientRect(); |
michael@0 | 21 | d.style.opacity = 0.3; |
michael@0 | 22 | window.addEventListener("MozReftestInvalidate", |
michael@0 | 23 | function() { |
michael@0 | 24 | setTimeout(function() { |
michael@0 | 25 | document.body.removeChild(d); |
michael@0 | 26 | document.documentElement.removeAttribute("class"); |
michael@0 | 27 | }, 50); |
michael@0 | 28 | }, false); |
michael@0 | 29 | </script> |
michael@0 | 30 | </body> |
michael@0 | 31 | </html> |