Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/table-row-group-nested-anonymous-001.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>CSS Test: Nested table-row-group anonymous table fixup</title>
<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>