Render Flow - Table structure
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 text
Close <tr>
→Close TR node
Close <thead>
→Close THEAD node
Read <tbody>
→Create TBODY node as child
Read <tr>
→Create TR node as child
Read <td>
→Create TD node as child with text
Close <tr>
→Close TR node
Close <tbody>
→Close TBODY node
Close <table>
→Close TABLE node
The browser reads the table element and builds a tree with table sections (thead, tbody), rows (tr), and cells (th, td), creating a structured layout for rendering.