diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-tables/fixup-dynamic-anonymous-inline-table-002.html')
-rw-r--r-- | testing/web-platform/tests/css/css-tables/fixup-dynamic-anonymous-inline-table-002.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-tables/fixup-dynamic-anonymous-inline-table-002.html b/testing/web-platform/tests/css/css-tables/fixup-dynamic-anonymous-inline-table-002.html new file mode 100644 index 0000000000..9f3a2ff21e --- /dev/null +++ b/testing/web-platform/tests/css/css-tables/fixup-dynamic-anonymous-inline-table-002.html @@ -0,0 +1,34 @@ +<!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> |