tor-browser

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

autofill-line-height.html (245B)


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