mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-10 13:12:56 +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:
parent
fd1b31d0ff
commit
e44c87cfff
Notes:
sideshowbarker
2024-07-19 06:12:00 +09:00
Author: https://github.com/awesomekling
Commit: e44c87cfff
5 changed files with 110 additions and 6 deletions
|
@ -156,5 +156,7 @@ private:
|
|||
size_t m_cursor { 0 };
|
||||
|
||||
HTMLToken m_current_token;
|
||||
|
||||
bool m_has_emitted_eof { false };
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue