1013054-1.html (475B)
1 <!DOCTYPE HTML> 2 <html class="reftest-wait"> 3 <body style="transform:translateY(50px);"> 4 <span style="padding:2px; background:yellow"> </span> 5 <script> 6 console.log(document.body.getBoundingClientRect()); 7 document.body.style.transform = "translateY(30px)"; 8 function doTest() { 9 document.body.style.transform = "translateY(10px)"; 10 document.documentElement.removeAttribute("class"); 11 } 12 window.addEventListener("MozReftestInvalidate", doTest); 13 </script>