1461231-1.html (450B)
1 <!DOCTYPE html> 2 <html lang="en" class="reftest-wait"> 3 <head> 4 <style> 5 #test { 6 background: #050; 7 position: fixed; 8 width: 200px; 9 height: 200px; 10 } 11 </style> 12 </head> 13 <body> 14 <p id="test" onclick="this.remove()"></p> 15 </body> 16 <script> 17 function doTest() { 18 document.getElementById("test").remove(); 19 document.documentElement.removeAttribute('class'); 20 } 21 window.addEventListener("MozReftestInvalidate", doTest); 22 </script> 23 </html>