Files
rust_browser/tests/goldens/fixtures/089-table-text-wrap.html
2026-01-31 18:23:03 -05:00

18 lines
289 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table { border: 1px solid black; width: 200px; }
td { border: 1px solid gray; padding: 5px; }
</style>
</head>
<body>
<table>
<tr>
<td>This is a long text that should wrap inside the cell</td>
<td>Short</td>
</tr>
</table>
</body>
</html>