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/table-width/balancing-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/table-width/balancing-2.html')
-rw-r--r-- | layout/reftests/table-width/balancing-2.html | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/layout/reftests/table-width/balancing-2.html b/layout/reftests/table-width/balancing-2.html new file mode 100644 index 0000000000..c43f414767 --- /dev/null +++ b/layout/reftests/table-width/balancing-2.html @@ -0,0 +1,99 @@ +<!DOCTYPE HTML> +<html> +<head> +<title>Balancing of tables (growing)</title> +<style type="text/css"> + +table, td { + border: none; + margin: 0; + padding: 0; + border-spacing: 3px; +} + +tr { height: 1.5em; } + +td { background: black; background: currentColor; } + +td, span { line-height: 1; } + +span { + display: inline-block; + width: 25px; +} + +</style> +</head> +<body> + +<!-- + cell widths in the first table are: + min pref pct + 25 75 + 25 25 + 0 0 + 25 50* + 25 25 50% + + and the table has 18px of horizontal border-spacing + + pref width of columns is 300px + + --> + +<table><tr> +<td style="color:aqua"><span></span>​<span></span>​<span></span></td> +<td style="color:yellow"><span></span></td> +<td style="color:red"></td> +<td style="color:fuchsia" width="50"><span></span></td> +<td style="color:blue" width="50%"><span></span></td> +</tr></table> + +<table width="518"><tr> +<td style="color:aqua"><span></span>​<span></span>​<span></span></td> +<td style="color:yellow"><span></span></td> +<td style="color:red"></td> +<td style="color:fuchsia" width="50"><span></span></td> +<td style="color:blue" width="50%"><span></span></td> +</tr></table> + +<!-- XXXdholbert: Change "width: 0px" to width="0px" in next 2 cases --> +<table width="438"><tr> +<td style="color:aqua" width="75"><span></span>​<span></span>​<span></span></td> +<td style="color:yellow" width="25"><span></span></td> +<td style="color:red; width: 0px"></td> +<td style="color:fuchsia" width="50"><span></span></td> +<td style="color:blue" width="50%"><span></span></td> +</tr></table> + +<table width="418"><tr> +<td style="color:aqua" width="10%"><span></span></td> +<td style="color:yellow" width="10%"><span></span></td> +<td style="color:red; width: 0px"></td> +<td style="color:fuchsia" width="10%"><span></span></td> +<td style="color:blue" width="50%"><span></span></td> +</tr></table> + +<table width="435"><tr> +<td style="color:aqua" width="75"><span></span>​<span></span>​<span></span></td> +<td style="color:yellow"></td> +<td style="color:fuchsia" width="50"><span></span></td> +<td style="color:blue" width="50%"><span></span></td> +</tr></table> + +<table width="415"><tr> +<td style="color:aqua" width="15%"><span></span></td> +<td style="color:yellow"></td> +<td style="color:fuchsia" width="15%"><span></span></td> +<td style="color:blue" width="50%"><span></span></td> +</tr></table> + +<table width="415"><tr> +<td style="color:aqua"></td> +<td style="color:yellow"></td> +<td style="color:fuchsia"></td> +<td style="color:blue"></td> +</tr></table> + +</body> +</html> |