1390726.html (777B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <script> 4 window.onload = () => { 5 a = document.createElement("frameset") 6 document.documentElement.appendChild(a) 7 b = document.createElement("f") 8 b.setAttribute("class", "x") 9 a.appendChild(b) 10 c = document.createElement("t") 11 document.documentElement.appendChild(c) 12 d = document.createElement('m') 13 d.setAttribute("class", "x") 14 c.appendChild(d) 15 f = document.createElement('d') 16 d.appendChild(f) 17 g = document.createElement('n') 18 f.appendChild(g) 19 setTimeout(() => { 20 g.setAttribute("class", "") 21 sheet = document.createElement("style") 22 sheet.appendChild(document.createTextNode(".x:-moz-broken{")) 23 document.head.appendChild(sheet) 24 document.documentElement.className = ""; 25 }, 500) 26 } 27 </script>