Render Flow - Line breaks and horizontal rules
Read <p>
→Create P node
Read text 'Hello'
→Add text node
Read <br>
→Create line break
Read text 'World'
→Add text node
Read <hr>
→Create horizontal rule
Close P
The browser reads the paragraph, adds text nodes, inserts a line break where <br> is, and draws a horizontal line where <hr> is.