Files
rust_browser/tests/goldens/fixtures/082-table-rowspan.html
2026-01-31 18:23:03 -05:00

21 lines
277 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table { border: 1px solid black; }
td { border: 1px solid gray; padding: 5px; }
</style>
</head>
<body>
<table>
<tr>
<td rowspan="2">Spans two rows</td>
<td>B1</td>
</tr>
<tr>
<td>B2</td>
</tr>
</table>
</body>
</html>