summaryrefslogtreecommitdiffstats
path: root/layout/reftests/invalidation/table-repaint-e-ref.html
blob: 27f949b19e96bb7c29db18f7f07076444553493b (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
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>table-repaint-e</title>
<style>
table {
  border-collapse: collapse;
}
tr {
  border: 1px solid transparent;
}
</style>
</head>
<body>
<table
  <tr>
    <td>
      <div>one</div>
    </td>
    <td>
      <div>two</div>
    </td>
  </tr
  <tr>
    <td>
      <div>three</div>
    </td>
    <td>
      <div>four</div>
    </td>
  </tr>
</table>
</body>
</html>