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

25 lines
421 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table { border: 1px solid black; }
td { border: 1px solid gray; padding: 5px; }
.red { background-color: red; }
.green { background-color: green; }
.blue { background-color: blue; }
</style>
</head>
<body>
<table>
<tr>
<td class="red">Red</td>
<td class="green">Green</td>
</tr>
<tr>
<td class="blue">Blue</td>
<td>Default</td>
</tr>
</table>
</body>
</html>