Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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>