aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ref/table_colspan_fixed_ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ref/table_colspan_fixed_ref.html')
-rw-r--r--tests/ref/table_colspan_fixed_ref.html26
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>&nbsp;</td><td width=100>&nbsp;</td><td width=100>&nbsp;</td></tr>
+ <tr><td class=two>&nbsp;</td><td class=two></td><td>&nbsp;</td></tr>
+ <tr><td>&nbsp;<td class=two>&nbsp;</td><td class=two></td></tr>
+ <tr><td class=three>&nbsp;</td><td class=three></td><td class=three></td></tr>
+</table>
+</body>
+</html>
+