summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-width/conflicting-widths-9.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/table-width/conflicting-widths-9.html')
-rw-r--r--layout/reftests/table-width/conflicting-widths-9.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/table-width/conflicting-widths-9.html b/layout/reftests/table-width/conflicting-widths-9.html
new file mode 100644
index 0000000000..bc34bf94fc
--- /dev/null
+++ b/layout/reftests/table-width/conflicting-widths-9.html
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<title>Conflicting widths on table cells</title>
+<style type="text/css">
+
+table {
+ border-spacing: 3px 5px;
+ padding: 2px 3px 4px 5px;
+}
+
+td {
+ border: none;
+ padding: 0;
+}
+
+</style>
+</head>
+<body>
+
+<table>
+<tr><td width="100" style="background: yellow">x</td></tr>
+<tr><td style="background:aqua">zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz</td></tr>
+</table>
+
+</body>
+</html>