summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/border-collapse-empty-cell-ref.html
blob: f6b25134f443c4625228b4901097b883a990d2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype HTML>
<style>
  table {
    border-collapse: collapse;
  }
  td {
    width:50px;
    height:50px;
    border: 10px solid gray;
  }
</style>
<table>
  <tr>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td></td>
    <td></td>
  </tr>
</table>