tor-browser

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

ua-style-sheet-textarea-1a-ref.html (499B)


      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 
      8 .ltr textarea, .rtl textarea {
      9  margin: 1px 0;
     10  padding: 2px;
     11 }
     12 .v-rl textarea {
     13  margin: 0 1px;
     14  padding: 2px;
     15 }
     16 </style>
     17 <div class=ltr>
     18  <textarea>hello</textarea>
     19 </div>
     20 
     21 <div class=rtl dir=rtl>
     22  <textarea>hello</textarea>
     23 </div>
     24 
     25 <div class=v-rl>
     26  <textarea>hello</textarea>
     27 </div>