Skip to content

Instantly share code, notes, and snippets.

View fed's full-sized avatar

fed

View GitHub Profile
@faressoft
faressoft / dom_performance_reflow_repaint.md
Last active July 23, 2024 08:38
DOM Performance (Reflow & Repaint) (Summary)

DOM Performance

Rendering

  • How the browser renders the document
    • Receives the data (bytes) from the server.
    • Parses and converts into tokens (<, TagName, Attribute, AttributeValue, >).
    • Turns tokens into nodes.
    • Turns nodes into the DOM tree.
  • Builds CSSOM tree from the css rules.