Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-tables/fixup-dynamic-anonymous-table-001.html
<!DOCTYPE html> <title>CSS Test: CSS Tables fixup merge anonymous table siblings (cell + cell)</title> <link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org"> <link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> <link rel="help" href="https://drafts.csswg.org/css-tables/#fixup-algorithm"> <style> .cell { display: table-cell; width: 50px; height: 100px; background-color: green; } </style> <p>Test passes if there is a filled green square.</p> <div> <span class="cell"></span> <span id="rm">Remove me</span> <span class="cell"></span> </div> <script> rm.offsetTop; rm.remove(); </script>
/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>