1680418.html (419B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <script> 4 window.addEventListener("hashchange", function() { 5 document.documentElement.removeAttribute("class"); 6 }); 7 8 async function runTest() { 9 document.getElementById("a").click(); 10 await new Promise(resolve => setTimeout(resolve, 0)); 11 document.location.hash = "#foo"; 12 } 13 </script> 14 <body onload="runTest()"> 15 <a id='a' type='text/html' href='telnet://'> 16 </body> 17 </html>