diff --git a/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp b/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp index 27a44d8b98a..2fe7f11f564 100644 --- a/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp +++ b/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp @@ -664,7 +664,7 @@ HTMLParser::AdjustedInsertionLocation HTMLParser::find_appropriate_place_for_ins // 3. If the adjusted insertion location is inside a template element, // let it instead be inside the template element's template contents, after its last child (if any). if (is(*adjusted_insertion_location.parent)) - adjusted_insertion_location = { verify_cast(*adjusted_insertion_location.parent).content().ptr(), nullptr }; + adjusted_insertion_location = { static_cast(*adjusted_insertion_location.parent).content().ptr(), nullptr }; // 4. Return the adjusted insertion location. return adjusted_insertion_location;