Files
ladybird/Tests/LibWeb/Crash/Layout/table-col-span.html
Tim Ledbetter 6b3d3468a1 LibWeb: Account for <col> span attribute during table grid formation
Previously, the column count was always incremented by 1. This led to a
mismatch with `compute_outer_content_sizes()`, which did use the `span`
attribute to advance the column index. This mismatch caused an
out-of-bounds access when the column index was greater than the
expected number of columns.
2026-02-24 12:14:54 +01:00

6 lines
124 B
HTML

<!DOCTYPE html>
<table>
<colgroup><col span="2"><col><col></colgroup>
<tr><td></td><td></td><td></td></tr>
</table>