From 27a4c1eaf6cd757f4c87d05a7a7d39e0f16dae8b Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 28 Jul 2025 11:39:56 -0400 Subject: [PATCH] LibWeb: Remove errant comment from HTMLElement::rendered_text_fragment This became untrue in a1a740bb3eeec55785754b22081a2cbfb04c0b04. --- Libraries/LibWeb/HTML/HTMLElement.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Libraries/LibWeb/HTML/HTMLElement.cpp b/Libraries/LibWeb/HTML/HTMLElement.cpp index f31113f229e..ebdb67e86b7 100644 --- a/Libraries/LibWeb/HTML/HTMLElement.cpp +++ b/Libraries/LibWeb/HTML/HTMLElement.cpp @@ -261,7 +261,6 @@ WebIDL::ExceptionOr HTMLElement::set_outer_text(String const& value) GC::Ref HTMLElement::rendered_text_fragment(StringView input) { // 1. Let fragment be a new DocumentFragment whose node document is document. - // Instead of creating a DocumentFragment the nodes are appended directly. auto fragment = realm().create(document()); // 2. Let position be a position variable for input, initially pointing at the start of input.