Files
rust_browser/tests/goldens/fixtures/143-img-link-in-table.html
Zachary D. Rowitsch 7729bd910f Fix hit-testing on tables with <tbody> by setting TableRowGroup dimensions
The table layout engine set dimensions on TableRow boxes but never on
TableRowGroup (tbody/thead/tfoot) boxes, leaving them at 0x0. The
hit-testing quick-reject check skipped these 0x0 boxes entirely, so
clicks never reached table cells inside <tbody>. This broke link
clicking on pages like moldybits.net that use explicit <tbody> tags.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-07 09:56:29 -05:00

11 lines
189 B
HTML

<html>
<body>
<table>
<tr>
<td><a href="/computer_entries/test.html"><img height="100" width="100" src="images/test_100x50.png"></a></td>
<td>Test Entry</td>
</tr>
</table>
</body>
</html>