mBrowser is a toy browser developed from scratch for learning purpose.
- DOM
- Parse HTML
- Construct DOM tree
- CSSOM
- Parse longhand CSS
- Parse shorthand CSS
- Cascade
- Construct CSSOM tree
- Layout
- Construct Style tree
- Construct Box tree
- Build display list
- Renderer
- Init window
- Networking
- Javascript Engine
- Parse Javascript
- Construct AST
- Evaluate
mBrowser is heavily inspired by Servo.