summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/167496-1.html
blob: e27ca0ec55a7c3848723d1e8667593cd4a6f0a08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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>