tor-browser

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

webkit-text-security-2.html (426B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 
      4 <style>
      5  .test {
      6    color: blue;
      7    font: 13px monospace;
      8  }
      9 </style>
     10 
     11 <script>
     12 function go() {
     13  // Apply the requested -webkit-text-security setting.
     14  maskOption = document.location.search.substr(1);
     15  document.styleSheets[0].cssRules[0].style.webkitTextSecurity = maskOption;
     16 }
     17 </script>
     18 
     19 <body onload="go()">
     20 input type="number": <input class="test" type="number" value="12345">