Render Flow - Cell merging
Read <table>
→Create TABLE node
Read <tr>
→Create TR node as child
Read <td>
→Create TD node as child
Check colspan/rowspan
Set cell span
Close TD
Close TR
Close TABLE
Calculate layout with merged cells
Paint merged cells
Composite final table
The browser reads the table structure, creates table rows and cells, then applies colspan and rowspan to merge cells visually before painting the table.