1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 14:05:09 +00:00

LibWeb: Split out "The end" from the HTML parsing spec to a function

Also add a spec link and some comments.
This commit is contained in:
Andreas Kling 2021-09-26 00:00:00 +02:00
parent f67648f872
commit e452550fda
2 changed files with 15 additions and 2 deletions

View file

@ -94,6 +94,8 @@ private:
void handle_after_frameset(HTMLToken&);
void handle_after_after_frameset(HTMLToken&);
void the_end();
void stop_parsing() { m_stop_parsing = true; }
void generate_implied_end_tags(const FlyString& exception = {});