tor-browser

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

ua-style-sheet-border-5.html (856B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <title>Test for logical borders on tbody 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; padding: 16px; }
      7 </style>
      8 <div class=ltr>
      9  <table rules=groups>
     10    <tbody>
     11      <tr><td>A1</td><td>A2</td><td>A3</td></tr>
     12    </tbody>
     13    <tbody>
     14      <tr><td>B1</td><td>B2</td><td>B3</td></tr>
     15    </tbody>
     16  </table>
     17 </div>
     18 <div class=rtl dir=rtl>
     19  <table rules=groups>
     20    <tbody>
     21      <tr><td>A1</td><td>A2</td><td>A3</td></tr>
     22    </tbody>
     23    <tbody>
     24      <tr><td>B1</td><td>B2</td><td>B3</td></tr>
     25    </tbody>
     26  </table>
     27 </div>
     28 <div class=v-rl>
     29  <table rules=groups>
     30    <tbody>
     31      <tr><td>A1</td><td>A2</td><td>A3</td></tr>
     32    </tbody>
     33    <tbody>
     34      <tr><td>B1</td><td>B2</td><td>B3</td></tr>
     35    </tbody>
     36  </table>
     37 </div>