summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-radius/table-collapse-1-ref.html
blob: 9fefb6f8cd74ed1ad0d878b9db6bc5a926051932 (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
<!doctype html>
<html><head>
<title>Table border collapse</title>
<style>
table {
  border: 2px solid black;
  border-collapse: collapse;
}

td {
  border: 2px solid black;
  width: 50px;
  height: 50px;
}

</style>
</head>
<body>
  <table>
    <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
    <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
    <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  </table>
</body></html>