tor-browser

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

table-cell-inline-size-box-sizing-quirks.html (582B)


      1 <!~quirks>
      2 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      3 <link rel="author" title="Mozilla" href="https://mozilla.org">
      4 <link rel="help" href="https://quirks.spec.whatwg.org/#the-table-cell-height-box-sizing-quirk">
      5 <link rel="match" href="table-cell-inline-size-box-sizing-quirks-ref.html">
      6 <title>Table cell box-sizing quirk doesn't force inline-axis to be content-box</title>
      7 <style>
      8  td {
      9    width: 50px;
     10    padding: 10px;
     11    border: 1px solid black;
     12    box-sizing: border-box;
     13  }
     14 </style>
     15 <table>
     16  <tr>
     17    <td>A</td>
     18  </tr>
     19 </table>