tor-browser

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

spellcheck-input-attr-dynamic-override.html (283B)


      1 <!DOCTYPE html>
      2 <html>
      3 <body onload="init()">
      4    <input class="spell-checked" type="text" spellcheck="false" value="blahblahblah">
      5    <script>
      6      function init() {
      7        document.querySelector("input").setAttribute("spellcheck", "true");
      8      }
      9    </script>
     10 </body>
     11 </html>