summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1430869.html
blob: 13842fe32397ffdbd2676f8fb684d2fda2491598 (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
38
39
40
<!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;
    }
    caption {
    text-align: left;
    }
  </style>
</head>
<body>

<div>
<table>
<caption>A<br>B</caption>
<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>