diff options
Diffstat (limited to 'test/layout')
-rw-r--r-- | test/layout/table-col-width.color.expected | 9 | ||||
-rw-r--r-- | test/layout/table-col-width.html | 19 |
2 files changed, 28 insertions, 0 deletions
diff --git a/test/layout/table-col-width.color.expected b/test/layout/table-col-width.color.expected new file mode 100644 index 00000000..7e556aa8 --- /dev/null +++ b/test/layout/table-col-width.color.expected @@ -0,0 +1,9 @@ + [48;2;255;0;0mtest[49m + [48;2;255;0;0ma [49m + [48;2;255;0;0mtest [49m + [48;2;255;0;0ma [49m + [48;2;255;0;0mtest [49m + [48;2;255;0;0ma [49m + [48;2;255;0;0mtest [49m + [48;2;255;0;0ma [49m + 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> |