931464-1.html (402B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <body> 4 <fieldset id="f" style="overflow: auto;"></fieldset> 5 <script> 6 function boom() 7 { 8 var f = document.getElementById("f"); 9 var s = document.createElement("span"); 10 s.textContent = "Hello Kitty"; 11 f.appendChild(s); 12 document.documentElement.removeAttribute("class"); 13 } 14 window.addEventListener("MozReftestInvalidate", boom); 15 </script> 16 </body> 17 </html>