Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-values/calc-width-table-auto-1.html
<!DOCTYPE HTML> <html> <head> <title>CSS Test: width: calc() on table-layout: auto tables</title> <link rel="author" title="L. David Baron" href="https://dbaron.org/"> <link rel="help" href="http://www.w3.org/TR/css3-values/#calc-notation"> <link rel="match" href="calc-width-table-auto-1-ref.html"> <table border> <tr> <td style="width: calc(500px)">x</td> <td style="width: 100px">y</td> </table> <table border> <tr> <td style="width: calc(50% + 1px)">x</td> <td style="width: 100px">y</td> </table> <table border> <tr> <td style="width: calc(50%)">x</td> <td style="width: 100px">y</td> </table> <table border> <tr> <td style="width: calc(2 * 10% + 0.5 * 500px)">x</td> <td style="width: 100px">y</td> </table> </body> </html>
/css/css-values/calc-width-table-auto-1-ref.html
<!DOCTYPE HTML> <html> <head> <title>CSS Reference: width: calc() on table-layout: auto tables</title> <link rel="author" title="L. David Baron" href="https://dbaron.org/"> <table border> <tr> <td style="width: 500px">x</td> <td style="width: 100px">y</td> </table> <table border> <tr> <td>x</td> <td style="width: 100px">y</td> </table> <table border> <tr> <td style="width: 50%">x</td> <td style="width: 100px">y</td> </table> <table border> <tr> <td>x</td> <td style="width: 100px">y</td> </table> </body> </html>