wrap-reflect-1b.html (422B)
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].setAttribute("wrap", "soft"); 9 </script>