tor-browser

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

calc-percent-plus-0px-fixed.html (554B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>Simple calc expression in table layout</title>
      4 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/94">
      5 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3482">
      6 <link rel="match" href="calc-percent-plus-0px-fixed-ref.html">
      7 <meta name="assert" content="calc(% + 0px) should be handled as calc(%) in fixed table layout.">
      8 <table border style="table-layout: fixed; width: 200px">
      9  <tr>
     10    <td style="width: calc(50% + 0px)">x</td>
     11    <td>y</td>
     12    <td>z</td>
     13  </tr>
     14 </table>