From 7defb893a9c7ad62c8f6a545fcc0e74b01692e55 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sun, 10 Oct 2021 00:06:13 -0700 Subject: [PATCH] LibWeb: Remove dead "outer loop" code in adoption agency algorithm --- Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp b/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp index 50dd2f08e9..d9fc29f64b 100644 --- a/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp +++ b/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp @@ -1060,14 +1060,6 @@ HTMLParser::AdoptionAgencyAlgorithmOutcome HTMLParser::run_the_adoption_agency_a return AdoptionAgencyAlgorithmOutcome::DoNothing; } - size_t outer_loop_counter = 0; - - //OuterLoop: - if (outer_loop_counter >= 8) - return AdoptionAgencyAlgorithmOutcome::DoNothing; - - ++outer_loop_counter; - auto formatting_element = m_list_of_active_formatting_elements.last_element_with_tag_name_before_marker(subject); if (!formatting_element) return AdoptionAgencyAlgorithmOutcome::RunAnyOtherEndTagSteps;