From f820daf7e1f5071d2e7d2d5cf67345211d4dce8d Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Fri, 28 Mar 2025 09:48:06 +0000 Subject: [PATCH] LibWeb/DOM: Update step 4 of load_document() Corresponds to https://github.com/whatwg/html/commit/2ab779b8e847fe132b4cf5ac3a2cb4ad2fdc4ef2 We don't implement most of what that touches, so the only actual change is a couple of words added here. --- Libraries/LibWeb/DOM/DocumentLoading.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Libraries/LibWeb/DOM/DocumentLoading.cpp b/Libraries/LibWeb/DOM/DocumentLoading.cpp index 246e0284715..058ea46d4e8 100644 --- a/Libraries/LibWeb/DOM/DocumentLoading.cpp +++ b/Libraries/LibWeb/DOM/DocumentLoading.cpp @@ -473,9 +473,9 @@ GC::Ptr load_document(HTML::NavigationParams const& navigation_pa // FIXME: 4. Otherwise, the document's type is such that the resource will not affect navigationParams's navigable, // e.g., because the resource is to be handed to an external application or because it is an unknown type - // that will be processed as a download. Hand-off to external software given navigationParams's response, - // navigationParams's navigable, navigationParams's final sandboxing flag set, sourceSnapshotParams's has - // transient activation, and initiatorOrigin. + // that will be processed by handle as a download. Hand-off to external software given navigationParams's + // response, navigationParams's navigable, navigationParams's final sandboxing flag set, + // sourceSnapshotParams's has transient activation, and initiatorOrigin. // 5. Return null. return nullptr;