Status: FAIL | Duration: 20ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/CSS2/normal-flow/margin-collapse-through-percentage-height-block-inside-table-cell.html
<!DOCTYPE html> <link rel="help" href="https://www.w3.org/TR/CSS22/box.html#collapsing-margins" title="8.3.1 Collapsing margins"> <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html"> <meta name="assert" content="A percentage height is unresolvable (i.e. gets treated as auto) if the containing block is auto."> <p>Test passes if there is a filled green square.</p> <div style="height:200px;"> <table style="border-collapse: collapse;"> <td style="overflow:hidden; width:100px; background:green; padding: 0px;"> <div style="margin-bottom:100px;"></div> <div style="height:30%;"></div> <div style="margin-top:100px;"></div> </td> </table> </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>