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

21 lines
278 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 colspan="2">Spans two columns</td>
</tr>
<tr>
<td>A</td>
<td>B</td>
</tr>
</table>
</body>
</html>