1416291.html (674B)
1 <html class="reftest-wait"> 2 <body> 3 <div style="transform-style:preserve-3d; width: 200px; height: 200px;"> 4 <div style="transform-style:preserve-3d; transform:translate(5px); width: 200px; height: 200px;" id="transformed"> 5 <div style="transform: translate(10px); width: 200px; height: 200px;"> 6 <div style="width:200px; height:200px; background-color:red"></div> 7 </div> 8 </div> 9 </div> 10 <script> 11 12 function doTest() 13 { 14 var div = document.getElementById("transformed"); 15 transformed.style.transform = "translate(10px)"; 16 document.documentElement.removeAttribute("class"); 17 } 18 19 document.addEventListener("MozReftestInvalidate", doTest); 20 </script> 21 </body> 22 </html>