mirror of
https://github.com/RGBCube/serenity
synced 2025-07-07 16:27:35 +00:00

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!
7 lines
127 B
HTML
7 lines
127 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head><meta name="greeting" content='Hello friends!' foo=bar></head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|