tor-browser

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

2.html (455B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3  <!-- Test: input element in search state looks like in text state -->
      4  <script type="text/javascript">
      5    function setToSearch()
      6    {
      7      document.getElementById('i').type = 'search';
      8    }
      9    function disableReftestWait()
     10    {
     11      document.documentElement.className = '';
     12    }
     13  </script>
     14 
     15  <body onload="setToSearch(); disableReftestWait();">
     16    <input type='checkbox' id='i'>
     17  </body>
     18 </html>