mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-09 04:32:51 +00:00
LibWeb: Implement more table-related insertion modes
This commit is contained in:
parent
d54d2892a9
commit
5818ef2c80
Notes:
sideshowbarker
2024-07-19 05:56:29 +09:00
Author: https://github.com/awesomekling
Commit: 5818ef2c80
2 changed files with 57 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue