tor-browser

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

ua-style-sheet-textarea-1c-ref.html (496B)


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