diff options
Diffstat (limited to 'tests/ref/table_colspan_fixed_ref.html')
-rw-r--r-- | tests/ref/table_colspan_fixed_ref.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/ref/table_colspan_fixed_ref.html b/tests/ref/table_colspan_fixed_ref.html new file mode 100644 index 00000000000..36a8756fb14 --- /dev/null +++ b/tests/ref/table_colspan_fixed_ref.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html> +<style> +table { + table-layout: fixed; + width: 300px; +} +td.two { + background-color: blue; + color: white; +} +td.three { + background-color: green; + color: white; +} +</style> +<body> +<table border=0 cellspacing=0 cellpadding=0> + <tr><td width=100> </td><td width=100> </td><td width=100> </td></tr> + <tr><td class=two> </td><td class=two></td><td> </td></tr> + <tr><td> <td class=two> </td><td class=two></td></tr> + <tr><td class=three> </td><td class=three></td><td class=three></td></tr> +</table> +</body> +</html> + |