Completed
Remember xhtml strict
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
So How Does the Browser Actually Render a Website
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 What we'll cover
- 3 High level flow
- 4 Parsing HTML
- 5 Remember xhtml strict
- 6 Valid HTML5
- 7 Would output
- 8 Parsing flow
- 9 Tokenizer
- 10 Parse Tree
- 11 DOM Tree
- 12 Speculative parsing
- 13 Reentrant
- 14 at the bottom
- 15 DOM + CSSOM
- 16 Multiple trees
- 17 Not in the render tree
- 18 In the render tree, not in the DOM
- 19 DOM Node to Render Object
- 20 Calculating visual properties
- 21 Recursive process
- 22 Will batch layouts
- 23 Immediate layout
- 24 Take note from the browser and batch
- 25 Bad
- 26 Good
- 27 Real world
- 28 Paint setup
- 29 Render Layers
- 30 Painting
- 31 inline critical CSS
- 32 Recap
- 33 The browser is complicated