1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 10:24:59 +00:00

LibWeb: Handle EOF tokens during "text" insertion

This commit is contained in:
Andreas Kling 2020-06-06 16:32:27 +02:00
parent 38ada2d102
commit be6abce44f
2 changed files with 10 additions and 0 deletions

View file

@ -44,6 +44,7 @@ public:
void set_parser_document(Badge<HTMLDocumentParser>, Document&);
void set_non_blocking(Badge<HTMLDocumentParser>, bool);
void set_already_started(Badge<HTMLDocumentParser>, bool b) { m_already_started = b; }
void prepare_script(Badge<HTMLDocumentParser>);
void execute_script();