diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/position-relative/table-collapse-4.html | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/position-relative/table-collapse-4.html')
-rw-r--r-- | layout/reftests/position-relative/table-collapse-4.html | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/layout/reftests/position-relative/table-collapse-4.html b/layout/reftests/position-relative/table-collapse-4.html new file mode 100644 index 0000000000..2b227caae3 --- /dev/null +++ b/layout/reftests/position-relative/table-collapse-4.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<head> + <style> + html { + line-height: 1.25; + } + body { + background-color: white; + margin: 0; + } + table { + background-color: red; + border-collapse: collapse; + position: absolute; + top: 525px; + } + thead { + background-color: pink; + } + tbody { + background-color: grey; + } + tfoot { + background-color: orange; + } + tr { + background-color: green; + } + td:first-child { + background-color: cyan; + } + td { + background-color: blue; + border-style: solid; + border-width: 5px; + border-color: gold; + } + colgroup { + background-color: purple; + } + col:first-child { + background-color: khaki; + } + .rel { + position: relative; + bottom: 175px; + } + </style> +</head> +<body> + <table> + <colgroup> + <col> + <col> + </colgroup> + <thead class="rel"> + <tr> + <td class="rel">XXX</td> + <td class="rel">YYY</td> + </tr> + </thead> + <tbody class="rel"> + <tr> + <td class="rel">XXX</td> + <td>YYY</td> + </tr> + <tr> + <td>XXX</td> + <td rowspan=2 class="rel">YYY</td> + </tr> + <tr class="rel"> + <td class="rel">XXX</td> + </tr> + <tr> + <td colspan=2 class="rel">XXX</td> + </tr> + </tbody> + <tfoot> + <tr> + <td class="rel">XXX</td> + <td>YYY</td> + </tr> + </tfoot> + </table> +</body> |