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-inline-table-002.html
<!DOCTYPE html> <title>CSS Test: CSS Tables fixup merge anonymous inline table siblings (cell + row)</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> .row { display: table-row; } .cell { display: table-cell; } .filler { width: 100px; height: 50px; background-color: green; } </style> <p>Test passes if there is a filled green square.</p> <span> <span class="cell"> <div class="filler"></div> </span> <span id="rm">Remove me</span> <span class="row"> <span class="cell"> <div class="filler"></div> </span> </span> </span> <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>