about summary refs log tree commit diff stats
path: root/test/layout/table-height.html
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2024-08-30 22:34:30 +0200
committerbptato <nincsnevem662@gmail.com>2024-08-30 22:45:23 +0200
commitf3860cb04014ef508b5c3db2c4b10f888711a16f (patch)
tree8118096ce9acfa2c7993ff3858550102bc7d5c91 /test/layout/table-height.html
parent0091042cd67cbacccccb7f474647a3999510ebf8 (diff)
downloadchawan-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.html16
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