LibWeb/DOM: Update step 4 of load_document()

Corresponds to 2ab779b8e8

We don't implement most of what that touches, so the only actual change
is a couple of words added here.
This commit is contained in:
Sam Atkins 2025-03-28 09:48:06 +00:00
parent 09b8f73e11
commit f820daf7e1

View file

@ -473,9 +473,9 @@ GC::Ptr<DOM::Document> 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;