tor-browser

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

overflow-clip-rounded-table-ref.html (537B)


      1 <!DOCTYPE html>
      2 <html><head><meta charset="utf-8">
      3 <title>Verifies overflow-clip on table with rounded border renders correctly</title>
      4 <link rel="help" href="https://www.w3.org/TR/css-overflow-3/#valdef-overflow-clip">
      5 <style>
      6 table {
      7    border-radius: 10px;
      8    border-collapse: collapse;
      9    overflow: hidden;
     10 }
     11 thead {
     12    background: green;
     13 }
     14 </style>
     15 </head><body><p>You should see a green table with rounded corners</p>
     16 <table>
     17 <thead>
     18    <tr>
     19      <th>One</th>
     20      <th>Two</th>
     21    </tr>
     22  </thead>
     23 </table>
     24 </body></html>