LibWeb: Implement HTML parser "in column group" insertion mode

This commit is contained in:
Luke 2020-06-13 06:22:18 +01:00 committed by Andreas Kling
parent 2241b09cd0
commit 6532c1e2fa
Notes: sideshowbarker 2024-07-19 05:39:16 +09:00
2 changed files with 81 additions and 2 deletions

View file

@ -99,6 +99,7 @@ private:
void handle_in_select_in_table(HTMLToken&);
void handle_in_select(HTMLToken&);
void handle_in_caption(HTMLToken&);
void handle_in_column_group(HTMLToken&);
void stop_parsing() { m_stop_parsing = true; }