summaryrefslogtreecommitdiffstats
path: root/layout/reftests/invalidation/table-repaint-border-collapse-ref.html
blob: a02341e8c6d341455ad7f405edfc2feb8646ab54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
  <title>table-repaint-border-collapse-ref</title>
  <style>
    table, td, th {
      border-collapse: collapse;
      border: 1px solid black;
    }
  </style>
</head>
<body>
<table>
  <tr>
    <td style="border: 5px solid black">xxx</td>
    <td>YYY</td>
    <td>zzz</td>
  </tr>
</table>
</body>
</html>