tor-browser

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

ua-style-sheet-margin-14.html (349B)


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