1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 18:55:08 +00:00

LibWeb: Implement HTML parser "in caption" insertion mode

This commit is contained in:
Luke 2020-06-13 05:09:54 +01:00 committed by Andreas Kling
parent a1838f676e
commit 2241b09cd0
2 changed files with 57 additions and 1 deletions

View file

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