LibWeb: Implement more table-related insertion modes

This commit is contained in:
Andreas Kling 2020-05-30 17:57:41 +02:00
parent d54d2892a9
commit 5818ef2c80
Notes: sideshowbarker 2024-07-19 05:56:29 +09:00
2 changed files with 57 additions and 2 deletions

View file

@ -95,6 +95,7 @@ private:
void handle_in_table_body(HTMLToken&);
void handle_in_row(HTMLToken&);
void handle_in_cell(HTMLToken&);
void handle_in_table_text(HTMLToken&);
void stop_parsing() { m_stop_parsing = true; }
@ -147,6 +148,8 @@ private:
RefPtr<Document> m_document;
RefPtr<HTMLHeadElement> m_head_element;
RefPtr<HTMLFormElement> m_form_element;
Vector<HTMLToken> m_pending_table_character_tokens;
};
}