You are browsing as a guest. Sign up (or log in) to start making projects!

2h 46m 7s logged

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 :)

2
554

Comments 0

No comments yet. Be the first!