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/fixup-dynamic-anonymous-inline-table-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Test: CSS Tables fixup merge anonymous inline table siblings (row-group + row-group)</title>
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<style>
.group {
display: table-row-group;
}
.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="group">
<span class="cell">
<div class="filler"></div>
</span>
</span>
<span id="rm">Remove me</span>
<span class="group">
<span class="cell">
<div class="filler"></div>
</span>
</span>
</span>
<script>
rm.offsetTop;
rm.remove();
</script>