mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 08:35:07 +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> |