calc-percent-plus-0px-auto.html (538B)
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-ref.html"> 7 <meta name="assert" content="calc(% + 0px) should be handled as calc(%) in auto table layout."> 8 <table border style="table-layout: auto"> 9 <tr> 10 <td style="width: calc(50% + 0px)">x</td> 11 <td style="width: 100px">y</td> 12 </tr> 13 </table>