summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/167496-1-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/167496-1-ref.html')
-rw-r--r--layout/reftests/bugs/167496-1-ref.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/layout/reftests/bugs/167496-1-ref.html b/layout/reftests/bugs/167496-1-ref.html
new file mode 100644
index 0000000000..b2f3748b9b
--- /dev/null
+++ b/layout/reftests/bugs/167496-1-ref.html
@@ -0,0 +1,47 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+ <meta http-equiv="content-type"
+ content="text/html; charset=ISO-8859-1">
+ <title>table border/css test</title>
+ <style type="text/css">
+<!--
+table {
+ border: 1px solid blue;
+ border-collapse: collapse;
+}
+
+th {
+ border: 1px outset silver;
+}
+
+td {
+ border: 1px outset silver;
+}
+-->
+ </style>
+</head>
+<body>
+
+
+<table>
+ <tbody>
+ <tr>
+ <th>Table-header</th>
+ <th>Table-header</th>
+ <th>Table-header</th>
+ </tr>
+ <tr>
+ <td>Table-data</td>
+ <td>Table-data</td>
+ <td>Table-data</td>
+ </tr>
+ <tr>
+ <td>Table-data</td>
+ <td>Table-data</td>
+ <td>Table-data</td>
+ </tr>
+ </tbody>
+</table>
+</body>
+</html>