mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-05 08:31:51 +00:00
For malformed tables which only have cells with span greater than 1, the content sizes for row and column aren't initialized to non-zero values. Avoid undefined behavior in such cases, which sometimes show up on Wikipedia.
7 lines
No EOL
76 B
HTML
7 lines
No EOL
76 B
HTML
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td colspan="2">A</td>
|
|
</tr>
|
|
</tbody>
|
|
</table> |