tor-browser

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

appearance-textfield-dynamic.html (175B)


      1 <!doctype html>
      2 <input type=number>
      3 <script>
      4  let input = document.querySelector("input");
      5  input.getBoundingClientRect();
      6  input.style.appearance = "textfield";
      7 </script>