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/pagination/table-caption-splitaftercaption-8.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/pagination/table-caption-splitaftercaption-8.html')
-rw-r--r-- | layout/reftests/pagination/table-caption-splitaftercaption-8.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/pagination/table-caption-splitaftercaption-8.html b/layout/reftests/pagination/table-caption-splitaftercaption-8.html new file mode 100644 index 0000000000..4ac07381a3 --- /dev/null +++ b/layout/reftests/pagination/table-caption-splitaftercaption-8.html @@ -0,0 +1,24 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> +<html lang="en-US" class="reftest-paged"> +<head> +<style type="text/css"> +div.filler {height:5px; width: 50px; border:thin solid blue;} +div.spacer { height: 0px; width: 0px; padding: 20px;border:thin solid green;} +tfoot div {border-color:orange;} +caption {margin-top: 5px; margin-bottom:5px; caption-side:top} +table {margin-top: 5px; margin-bottom:5px} +</style> +</head> +<body> + +<table cellspacing="0" cellpadding="0"> +<caption><div class="spacer" style="padding-top:160px"></div></caption> +<tbody> +<tr><td><div class="spacer"></div></td></tr> +<tr><td><div class="spacer"></div></td></tr> +</tbody> +<tfoot><tr><td><div class="spacer"></div></td></tr></tfoot> +</table> +</body> +</html> |