1535040-1.html (538B)
1 <html class="reftest-wait"> 2 <svg width="400" height="300"> 3 <text id="text" opacity="1" x="0" y="150" fill="black"> 4 This text should disappear 5 </text> 6 <rect id="rect" width="100" height="100" fill="green" x="0" y="0"/> 7 </svg> 8 9 <script> 10 function doTest() { 11 var elt = document.getElementById("text"); 12 elt.setAttribute("opacity", 0); 13 document.documentElement.removeAttribute("class"); 14 } 15 16 window.addEventListener("MozReftestInvalidate", doTest, false); 17 setTimeout(doTest, 5000); 18 </script> 19 </html>