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>
11 lines
189 B
HTML
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>
|