tor-browser

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

autofill-line-height.html (284B)


      1 <!doctype html>
      2 <style>
      3  textarea { height: 4em; color: GrayText; font-family: system-ui }
      4 </style>
      5 <textarea style="resize: none;">Autofill</textarea>
      6 <script>
      7  let textarea = SpecialPowers.wrap(document.querySelector("textarea"));
      8  textarea.autofillState = "autofill";
      9 </script>