From 12442ca4308267b82e7ef81e6db1f326ee19f495 Mon Sep 17 00:00:00 2001 From: joshua stein Date: Fri, 29 Nov 2024 21:53:25 -0600 Subject: [PATCH] LibWeb: Remove a misleading duplicate comment in HTMLParser --- Libraries/LibWeb/HTML/Parser/HTMLParser.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp b/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp index e9750c56686..8e64a273904 100644 --- a/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp +++ b/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp @@ -2467,8 +2467,6 @@ void HTMLParser::handle_in_body(HTMLToken& token) // Insert an HTML element for the token. Immediately pop the current node off the stack of open elements. (void)insert_html_element(token); - - // Acknowledge the token's self-closing flag, if it is set. (void)m_stack_of_open_elements.pop(); // Acknowledge the token's self-closing flag, if it is set.