Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-tables/table-row-group-nested-anonymous-001.html
<!doctype html> <meta charset="utf-8"> <title>CSS Test: Nested table-row-group anonymous table fixup</title> <link rel="help" href="https://drafts.csswg.org/css-tables/#fixup-algorithm"> <link rel="help" href="https://github.com/servo/servo/issues/43660"> <link rel="match" href="table-row-group-nested-anonymous-001-ref.html"> <style> .cell { display: table-cell; border: 1px solid gray; padding: 4px; font: 16px serif; } </style> <div style="display: table-row-group"> <div style="display: table-row-group"> <div class="cell">a</div> <div class="cell">b</div> </div> <div class="cell">cccc</div> <div class="cell">dddd</div> </div>
/css/css-tables/table-row-group-nested-anonymous-001-ref.html
<!doctype html> <meta charset="utf-8"> <style> .t { display: table; } .r { display: table-row; } .c { display: table-cell; border: 1px solid gray; padding: 4px; font: 16px serif; } </style> <div class="t"> <div class="r"> <div class="c">a</div> <div class="c">b</div> <div class="c">cccc</div> <div class="c">dddd</div> </div> </div>