tor-browser

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

wrap-reflect-1a.html (407B)


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