diff options
Diffstat (limited to 'layout/reftests/bugs/167496-1.html')
-rw-r--r-- | layout/reftests/bugs/167496-1.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/layout/reftests/bugs/167496-1.html b/layout/reftests/bugs/167496-1.html new file mode 100644 index 000000000..e27ca0ec5 --- /dev/null +++ b/layout/reftests/bugs/167496-1.html @@ -0,0 +1,46 @@ +<!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 border="1">
+ <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>
|