diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /layout/reftests/bugs/413286-6.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/bugs/413286-6.html')
-rw-r--r-- | layout/reftests/bugs/413286-6.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/layout/reftests/bugs/413286-6.html b/layout/reftests/bugs/413286-6.html new file mode 100644 index 0000000000..2b71da8ac2 --- /dev/null +++ b/layout/reftests/bugs/413286-6.html @@ -0,0 +1,51 @@ +<html> +<head><style> + table { width: 600px; } + td.smallSpec { width: 100px; } + td.zeroSpec { width: 0px; } + td.smallPct { width: 10%; } + td.pink { background: pink; } + td.teal { background: teal; } +</style></head> +<body> + +<h2>Other column fixed-width; two zero columns with colspan; explicit 0 width on span</h2> + +<table cellspacing="0" cellpadding="0"> + <tr> + <td class="smallSpec pink">100</td> + <td class="zeroSpec teal" colspan="2"/> + </tr> +</table> + +<h2>Other column percent-width; two zero columns with colspan; explicit 0 width on span</h2> + +<table cellspacing="0" cellpadding="0"> + <tr> + <td class="smallPct pink">10%</td> + <td class="zeroSpec teal" colspan="2"/> + </tr> +</table> + +<h2>Other column fixed-width; zero-column explicitly zero-width; zero column spanned by colspan (crossing other column)</h2> + +<table cellspacing="0" cellpadding="0"> + <tr> + <td class="smallSpec pink">100</td> + <td class="zeroSpec teal"/> + </tr> + <tr><td colspan="2"/></tr> +</table> + +<h2>Other column percent-width; zero-column explicitly zero-width; zero column spanned by colspan (crossing other column)</h2> + +<table cellspacing="0" cellpadding="0"> + <tr> + <td class="smallPct pink">10%</td> + <td class="zeroSpec teal"/> + </tr> + <tr><td colspan="2"/></tr> +</table> + +</body> +</html> |