diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-28 18:20:55 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-28 18:20:55 +0200 |
commit | 5f8cbe6a1b2c434d7723b05148c299a9e3c01d2d (patch) | |
tree | 94ffe4419780e71b124a8d5eb7efbb8e3f1b414e | |
parent | 308cb69329c56c10789b5663ae83419e7f167364 (diff) | |
download | serenity-5f8cbe6a1b2c434d7723b05148c299a9e3c01d2d.zip |
LibWeb: Fix HTMLDocumentParser build
-rw-r--r-- | Libraries/LibWeb/Parser/HTMLDocumentParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/Parser/HTMLDocumentParser.cpp b/Libraries/LibWeb/Parser/HTMLDocumentParser.cpp index 9325527fac..98f8993052 100644 --- a/Libraries/LibWeb/Parser/HTMLDocumentParser.cpp +++ b/Libraries/LibWeb/Parser/HTMLDocumentParser.cpp @@ -939,7 +939,7 @@ void HTMLDocumentParser::handle_in_cell(HTMLToken& token) PARSE_ERROR(); } - m_stack_of_open_elements.pop_until_an_element_with_tag_name_has_been_popped(token.tag_name()) + m_stack_of_open_elements.pop_until_an_element_with_tag_name_has_been_popped(token.tag_name()); m_list_of_active_formatting_elements.clear_up_to_the_last_marker(); |