tor-browser

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

41464-1b.html (365B)


      1 <!DOCTYPE html>
      2 <title>Dynamic manipulation of textarea.wrap</title>
      3 <link rel=help href=http://www.whatwg.org/html5/#dom-textarea-wrap>
      4 <link rel=author title=Ms2ger href=mailto:ms2ger@gmail.com>
      5 <textarea wrap=off cols=20>01234567890 01234567890 01234567890</textarea>
      6 <script>
      7 document.getElementsByTagName("textarea")[0].setAttribute("wrap", "soft");
      8 </script>