tor-browser

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

collapsing-border-model-014.html (596B)


      1 <!DOCTYPE html>
      2 <title>CSS Test: Tables under the collapsing borders model don't have padding</title>
      3 <link rel="author" title="Oriol Brufau" href="obrufau@igalia.com">
      4 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#collapsing-borders">
      5 <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
      6 <style>
      7 div {
      8  float: left;
      9  background: green;
     10 }
     11 table {
     12  border-collapse: collapse;
     13  box-sizing: border-box;
     14  width: 100px;
     15  height: 100px;
     16  padding: 100px;
     17 }
     18 </style>
     19 <p>Test passes if there is a filled green square.</p>
     20 <div>
     21  <table></table>
     22 </div>