Render Flow - Table headers
Read <table>
→Create TABLE node
Read <thead>
→Create THEAD node as child
Read <tr>
→Create TR node as child
Read <th>
→Create TH node as child with header role
Add text content
Close TH
Close TR
Close THEAD
Read <tbody>
→Create TBODY node as child
Read <tr>
→Create TR node as child
Read <td>
→Create TD node as child
Add text content
Close TD
Close TR
Close TBODY
Close TABLE
The browser reads the table element and builds a tree with table, thead, tbody, tr, th, and td nodes, assigning semantic roles and preparing for layout.