diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/bugs/1673677-2.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/bugs/1673677-2.html')
-rw-r--r-- | layout/reftests/bugs/1673677-2.html | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1673677-2.html b/layout/reftests/bugs/1673677-2.html new file mode 100644 index 0000000000..9001618ee3 --- /dev/null +++ b/layout/reftests/bugs/1673677-2.html @@ -0,0 +1,64 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>Testcase for bug 1673677</title> +<style> +.flex { + display: flex; + align-items: baseline; + border: 1px solid; + margin-bottom: 5px; + width: fit-content; +} +.wrapper { + /* Explicitly specify size, due to bug 1166120 */ + inline-size: 125px; + block-size: 100px; +} +table, tr, td { + border: 1px solid; + border-width: 2px 2px 4px 4px; + padding: 3px 3px 6px 6px; + margin: 8px 8px 12px 12px; + border-spacing: 0; +} +td { + vertical-align: baseline; + line-height: 0; +} +.filler-nested-table { + inline-size: 50px; + block-size: 75px; + background: purple; + display: inline-block; +} +.filler { + inline-size: 40px; + block-size: 30px; + background: pink; + display: inline-block; +} +</style> +<div class="flex"> + <div class="wrapper"> + <table style="writing-mode: vertical-lr;"> + <tr><td><div class="filler-nested-table"></div></td></tr> + </table> + </div> + <div><div class="filler"></div></div> +</div> +<div class="flex" style="writing-mode: vertical-lr;"> + <div class="wrapper"> + <table style="writing-mode: horizontal-tb;"> + <tr><td><div class="filler-nested-table"></div></td></tr> + </table> + </div> + <div><div class="filler"></div></div> +</div> +<div class="flex" style="writing-mode: vertical-rl;"> + <div class="wrapper"> + <table style="writing-mode: horizontal-tb;"> + <tr><td><div class="filler-nested-table"></div></td></tr> + </table> + </div> + <div><div class="filler"></div></div> +</div> |