diff options
author | bptato <nincsnevem662@gmail.com> | 2024-08-30 22:34:30 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-08-30 22:45:23 +0200 |
commit | f3860cb04014ef508b5c3db2c4b10f888711a16f (patch) | |
tree | 8118096ce9acfa2c7993ff3858550102bc7d5c91 /test/layout/table-height.html | |
parent | 0091042cd67cbacccccb7f474647a3999510ebf8 (diff) | |
download | chawan-f3860cb04014ef508b5c3db2c4b10f888711a16f.tar.gz |
layout: fix table height constraint type
it's really min-height, not height; consistency is not CSS's strong suit...
Diffstat (limited to 'test/layout/table-height.html')
-rw-r--r-- | test/layout/table-height.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/layout/table-height.html b/test/layout/table-height.html new file mode 100644 index 00000000..16b2acfe --- /dev/null +++ b/test/layout/table-height.html @@ -0,0 +1,16 @@ +<table height=1> +<tr><td> +test<br> +test<br> +test +</td></tr> +</table> +after table +<table style="height: 5em"> +<tr><td> +test<br> +test<br> +test +</td></tr> +</table> +after table 2 |