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

26 lines
385 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table { border: 1px solid black; }
td { border: 1px solid gray; padding: 5px; }
.inner { border-color: blue; }
</style>
</head>
<body>
<table>
<tr>
<td>
<table class="inner">
<tr>
<td>Nested A</td>
<td>Nested B</td>
</tr>
</table>
</td>
<td>Outer</td>
</tr>
</table>
</body>
</html>