1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:08:12 +00:00

LibWeb: Implement more table support in the new HTML parser

This is enough to parse the Google front page! (Note: I did have to
hack the tokenizer while parsing Google, in order to avoid named
character references screwing everything up. We'll fix that too soon
enough!)
This commit is contained in:
Andreas Kling 2020-05-28 00:27:46 +02:00
parent 7f18c51f4c
commit ebb1649a52
5 changed files with 142 additions and 1 deletions

View file

@ -56,6 +56,8 @@ public:
Element* last_element_with_tag_name_before_marker(const FlyString& tag_name);
void clear_up_to_the_last_marker();
private:
Vector<Entry> m_entries;
};