C++ Browser Engine
You can try it online! : https://k754a.hackclub.app/
Source code: https://github.com/k754a/C-Plus-Plus-Web-Engine
Got the DOM tree working!
Ok, in this devlog, I fixed the DOM tree issues; it seemed to be a combo of issues with the parser (I fixed that) and some actually easy fixes from the DOM tree; it just took a rewrite!
I was also able to code a way to see the tree:
DOM TREE
├── [ROOT]
│ ├── [!DOCTYPE]
│ │ ├── [html]
│ │ │ ├── [body]
│ │ │ │ ├── [h1]
│ │ │ │ │ └──── " Heading test "
│ │ │ │ ├── [p]
│ │ │ │ │ └──── " Paragraph test "
│ │ │ │ ├── [p]
│ │ │ │ │ └──── " Multiple "
│ │ │ │ │ ├── [strong]
│ │ │ │ │ │ └──── " Char "
│ │ │ │ │ └──── " Test "
We are super close to getting our first text on the screen! (Maybe just a devlog or 2).
The vid below shows it in action! Thanks for reading :)
Comments 0
No comments yet. Be the first!
Sign in to join the conversation.