about summary refs log tree commit diff stats
path: root/test/layout/table-col-width.html
diff options
context:
space:
mode:
Diffstat (limited to 'test/layout/table-col-width.html')
-rw-r--r--test/layout/table-col-width.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/layout/table-col-width.html b/test/layout/table-col-width.html
new file mode 100644
index 00000000..a27bb530
--- /dev/null
+++ b/test/layout/table-col-width.html
@@ -0,0 +1,19 @@
+<table>
+<tr><td bgcolor=red>test</td></tr>
+<tr><td bgcolor=red>a</td></tr>
+</table>
+
+<table>
+<tr><td bgcolor=red style="width: 5ch">test</td></tr>
+<tr><td bgcolor=red>a</td></tr>
+</table>
+
+<table>
+<tr><td bgcolor=red>test</td></tr>
+<tr><td bgcolor=red style="width: 5ch">a</td></tr>
+</table>
+
+<table>
+<tr><td bgcolor=red style="width: 1ch">test</td></tr>
+<tr><td bgcolor=red style="width: 5ch">a</td></tr>
+</table>