1588259.html (490B)
1 <html class="reftest-wait"> 2 <script> 3 if (location.search == "?x=") { 4 setTimeout(() => window.close(), 1000); 5 } else { 6 document.fonts.onloadingdone = () => { 7 document.forms[1].submit(); 8 }; 9 window.onload = () => { 10 document.forms[0].submit(); 11 setTimeout(() => { 12 document.documentElement.removeAttribute("class"); 13 }, 1000); 14 }; 15 } 16 </script> 17 <body> 18 <form target="bug1588259"><input name="x"></form> 19 <form target="bug1588259"><input name="x"></form> 20 </body> 21 </html>