summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/413286-5-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/413286-5-ref.html')
-rw-r--r--layout/reftests/bugs/413286-5-ref.html68
1 files changed, 68 insertions, 0 deletions
diff --git a/layout/reftests/bugs/413286-5-ref.html b/layout/reftests/bugs/413286-5-ref.html
new file mode 100644
index 0000000000..70b3029542
--- /dev/null
+++ b/layout/reftests/bugs/413286-5-ref.html
@@ -0,0 +1,68 @@
+<html>
+<head><style>
+ table { width: 600px }
+ td.smallSpec { width: 100px; }
+ td.bigSpec { width: 500px; }
+ td.smallPct { width: 10%; }
+ td.bigPct { width: 90%; }
+ td.pink { background: pink }
+ td.teal { background: teal }
+</style></head>
+<body>
+
+<h2>Other column fixed-width</h2>
+
+<table cellspacing="0" cellpadding="0">
+ <tr>
+ <td class="smallSpec pink">100</td>
+ <td class="bigSpec teal"/>
+ </tr>
+</table>
+
+<h2>Other column percent-width</h2>
+
+<table cellspacing="0" cellpadding="0">
+ <tr>
+ <td class="smallPct pink">10%</td>
+ <td class="bigPct teal"/>
+ </tr>
+</table>
+
+<h2>Other column fixed-width; zero column spanned by colspan (crossing other column)</h2>
+
+<table cellspacing="0" cellpadding="0">
+ <tr>
+ <td class="smallSpec pink">100</td>
+ <td class="bigSpec teal"/>
+ </tr>
+</table>
+
+<h2>Other column percent-width; zero column spanned by colspan (crossing other column)</h2>
+
+<table cellspacing="0" cellpadding="0">
+ <tr>
+ <td class="smallPct pink">10%</td>
+ <td class="bigPct teal"/>
+ </tr>
+</table>
+
+<h2>Other column fixed-width; two zero columns with colspan</h2>
+
+<table cellspacing="0" cellpadding="0">
+ <tr>
+ <td class="smallSpec pink">100</td>
+ <td class="bigSpec teal"/>
+ </tr>
+</table>
+
+<h2>Other column percent-width; two zero columns with colspan</h2>
+
+<table cellspacing="0" cellpadding="0">
+ <tr>
+ <td class="smallPct pink">10%</td>
+ <td class="bigPct teal"/>
+ </tr>
+</table>
+
+</body>
+</html>