1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-07 16:27:35 +00:00
serenity/Base/home/anon/www/simple.html
Andreas Kling e44c87cfff 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!
2020-05-24 00:49:22 +02:00

7 lines
127 B
HTML

<!DOCTYPE html>
<html>
<head><meta name="greeting" content='Hello friends!' foo=bar></head>
<body>
<div></div>
</body>
</html>