summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/subpixel-collapsed-borders-ref.html
blob: 0a2e7a8d95b95dc21ad1c103fdfba65b8f5b1b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<style>
table {
  border: 5px solid green;
  border-collapse: collapse;
}

td {
  width: 50px;
  height: 50px;
  border: 1px solid red;
}
</style>

<p>There should be a square with a green border, not a red border.
</p>

<table>
  <tr>
    <td></td>
  </tr>
</table>