summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/368504-3b.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/368504-3b.html')
-rw-r--r--layout/reftests/bugs/368504-3b.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/reftests/bugs/368504-3b.html b/layout/reftests/bugs/368504-3b.html
new file mode 100644
index 0000000000..2ce80baafc
--- /dev/null
+++ b/layout/reftests/bugs/368504-3b.html
@@ -0,0 +1,28 @@
+<html>
+<head><style>
+ /* cellspacing=0 cellpadding=0 */
+ table { border-spacing: 0 }
+ td, th { padding: 0 }
+
+ /* Table width */
+ table { width: 500px; }
+
+ /* Cell colors + widths */
+ td.a { background: lightgreen; width: 100px; }
+ td.b { background: yellow; width: 60%; }
+ td.c { background: lightblue; width: 30%; }
+ td.d { /* invisible */ min-width: 300px; }
+</style></head>
+<body>
+<table>
+ <tr>
+ <td class="a">a</td>
+ <td class="b">b</td>
+ <td class="c">c</td>
+ </tr>
+ <tr>
+ <td class="d" colspan=3>&nbsp</td>
+ </tr>
+</table>
+</body>
+</html>