tor-browser

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

helper_re_enable_apz_on_blur.html (355B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <meta charset="utf-8">
      5  <style>
      6  html {
      7    user-select: none;
      8  }
      9  body {
     10    margin: 0;
     11  }
     12  textarea {
     13    width: 100%;
     14    height: 100%;
     15    position: fixed;
     16    user-select: text;
     17  }
     18  </style>
     19 </head>
     20 <body>
     21 <textarea id="textarea" name="name" rows="1" cols="20" inputmode="none">text</textarea>
     22 </body>
     23 </html>