summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1430869-ref.html
blob: cc7defbb52f4ae7f0a0790bbb8cfd6b2d389e1bc (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
35
36
37
<!DOCTYPE html>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <meta charset="UTF-8">
  <title>Webrender table caption + border-collapse test</title>
  <style>
    table, th, td {
    border: 1px solid;
    border-collapse: collapse;
    }
  </style>
</head>
<body>

<div>
<span>A<br>B</span>
<table>
<tbody><tr>
<td>row 1</td>
</tr>
<tr>
<td>row 2</td>
</tr>
<tr>
<td>row 3</td>
</tr>
<tr>
<td>row 4</td>
</tr>
<tr>
<td>row 5</td>
</tr>
</tbody></table>
</div>


</body></html>