tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

autofocus-leaves-iframe.html (456B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3  <link rel='stylesheet' type='text/css' href='style.css'>
      4  <script>
      5    function frameLoadHandler()
      6    {
      7      var i = document.createElement('input');
      8      i.autofocus = true;
      9      document.body.appendChild(i);
     10      setTimeout(document.documentElement.removeAttribute('class'), 0);
     11    }
     12  </script>
     13  <body>
     14    <iframe onload="frameLoadHandler();" srcdoc="<input autofocus>"></iframe>
     15  </body>
     16 </html>