mirror of
https://github.com/servo/servo.git
synced 2025-06-26 18:14:34 +01:00
36 lines
894 B
HTML
36 lines
894 B
HTML
<!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">
|
|
<link rel="help" href="https://drafts.csswg.org/css-tables/#fixup-algorithm">
|
|
<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>
|