tor-browser

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

ua-style-sheet-textarea-1.html (380B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <title>Test for logical properties of textarea in the UA stylesheet</title>
      4 <style>
      5 .v-rl { writing-mode: vertical-rl; }
      6 .ltr, .rtl, .v-rl { border: 1px solid blue; }
      7 </style>
      8 <div class=ltr>
      9  <textarea>hello</textarea>
     10 </div>
     11 
     12 <div class=rtl dir=rtl>
     13  <textarea>hello</textarea>
     14 </div>
     15 
     16 <div class=v-rl>
     17  <textarea>hello</textarea>
     18 </div>