Status: PASS | Duration: 15ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/grid-items/item-with-table-with-infinite-max-intrinsic-width.html
<!DOCTYPE html> <title>Grid item with table with infinite max intrinsic inline size</title> <link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-item-sizing" title="6.2. Grid Item Sizing"> <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html"> <p>Test passes if there is a filled green square.</p> <div style="display:grid; grid-template-columns:max-content; width:100px; height:100px; background:green;"> <div> <table style="height:50px; background:green;" cellpadding="0" cellspacing="0"> <tr> <td style="width:100%; background:green;"> </td> <td style="background:green;"> </td> </tr> </table> </div> </div>
/css/reference/ref-filled-green-100px-square-only.html
<!DOCTYPE html> <link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org"> <p>Test passes if there is a filled green square.</p> <div style="width:100px; height:100px; background:green;"></div>