Render Flow - Nested lists
Read <ul>
→Create UL node
Read <li>
→Create LI node as child of UL
Add text to LI
Read nested <ul>
→Create nested UL node as child of LI
Read nested <li>
→Create nested LI node as child of nested UL
Add text to nested LI
Close nested LI
Close nested UL
Close LI
Close UL
The browser reads the outer list, creates list nodes, then reads nested lists inside list items, building a tree of lists and list items.