tor-browser

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

table-cell-width-calculation-applies-to.html (631B)


      1 <title>The table cell width calculation quirk should not apply to inline blocks</title>
      2 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <script src="/resources/check-layout-th.js"></script>
      6 <style>
      7 inline-block {
      8  display: inline-block;
      9 }
     10 </style>
     11 <body>
     12  <table style="width:80px" data-expected-width=80>
     13    <tr>
     14      <td><inline-block style="width:50px">50</inline-block><inline-block style="width:50px">50</inline-block></td>
     15    </tr>
     16  </table>
     17 <script>checkLayout('table');</script>
     18 </body>