1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:17:35 +00:00

LibWeb: Implement enough HTML parsing to handle a small simple DOM :^)

We can now parse a little DOM like this:

<!DOCTYPE html>
<html>
    <head></head>
    <body>
        <div></div>
    </body>
</html>

This is pretty slow work, but the incremental progress is satisfying!
This commit is contained in:
Andreas Kling 2020-05-24 00:49:22 +02:00
parent fd1b31d0ff
commit e44c87cfff
5 changed files with 110 additions and 6 deletions

View file

@ -1,4 +1,7 @@
<!DOCTYPE html>
<html>
<head><meta name="greeting" content='Hello friends!' foo=bar></head>
<body>
<div></div>
</body>
</html>