tor-browser

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

ua-style-sheet-fieldset-1.html (731B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <title>Test for logical properties of fieldset 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 fieldset { height: 100px; width: 100px; }
      9 
     10 .a { block-size: 40%; background: #eee; }
     11 .b { block-size: 60%; background: #ddd; }
     12 </style>
     13 <div class=ltr>
     14  <fieldset>
     15    <legend>Legend</legend>
     16    <div class=a></div>
     17    <div class=b></div>
     18  </fieldset>
     19 </div>
     20 
     21 <div class=rtl dir=rtl>
     22  <fieldset>
     23    <legend>Legend</legend>
     24    <div class=a></div>
     25    <div class=b></div>
     26  </fieldset>
     27 </div>
     28 
     29 <div class=v-rl>
     30  <fieldset>
     31    <legend>Legend</legend>
     32    <div class=a></div>
     33    <div class=b></div>
     34  </fieldset>
     35 </div>