summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-radius/table-collapse-1.html
blob: c7a99b7d7385c17a6313f21fb6ecfaa262a551da (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
<!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;
  border-radius: 4px;
}

</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>