1456111-1.html (448B)
1 <!DOCTYPE html> 2 <html reftest-zoom="0.9" class="reftest-wait"> 3 <meta charset="utf-8"> 4 <body> 5 <div id="transformed" style="width:200px; height:200px; background-color:red; transform:scale(2)"></div> 6 </body> 7 <script> 8 function doTest() { 9 document.getElementById("transformed").style.transform = "scale(0)"; 10 document.documentElement.removeAttribute("class"); 11 } 12 window.addEventListener("MozReftestInvalidate", doTest); 13 </script> 14 </html>