
This URL library ends up being a relatively fundamental base library of the system, as LibCore depends on LibURL. This change has two main benefits: * Moving AK back more towards being an agnostic library that can be used between the kernel and userspace. URL has never really fit that description - and is not used in the kernel. * URL _should_ depend on LibUnicode, as it needs punnycode support. However, it's not really possible to do this inside of AK as it can't depend on any external library. This change brings us a little closer to being able to do that, but unfortunately we aren't there quite yet, as the code generators depend on LibCore.
88 lines
3.1 KiB
C++
88 lines
3.1 KiB
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Fetch/Infrastructure/HTTP/Requests.h>
|
|
#include <LibWeb/Fetch/Infrastructure/HTTP/Responses.h>
|
|
#include <LibWeb/HTML/CrossOrigin/CrossOriginOpenerPolicy.h>
|
|
#include <LibWeb/HTML/CrossOrigin/CrossOriginOpenerPolicyEnforcementResult.h>
|
|
#include <LibWeb/HTML/HistoryHandlingBehavior.h>
|
|
#include <LibWeb/HTML/Navigable.h>
|
|
#include <LibWeb/HTML/Origin.h>
|
|
#include <LibWeb/HTML/PolicyContainers.h>
|
|
#include <LibWeb/HTML/SandboxingFlagSet.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-params
|
|
struct NavigationParams {
|
|
// null or a navigation ID
|
|
Optional<String> id;
|
|
|
|
// the navigable to be navigated
|
|
JS::Handle<Navigable> navigable;
|
|
|
|
// null or a request that started the navigation
|
|
JS::GCPtr<Fetch::Infrastructure::Request> request;
|
|
|
|
// a response that ultimately was navigated to (potentially a network error)
|
|
JS::GCPtr<Fetch::Infrastructure::Response> response;
|
|
|
|
// null or a fetch controller
|
|
JS::GCPtr<Fetch::Infrastructure::FetchController> fetch_controller { nullptr };
|
|
|
|
// null or an algorithm accepting a Document, once it has been created
|
|
Function<void(DOM::Document&)> commit_early_hints { nullptr };
|
|
|
|
// a cross-origin opener policy enforcement result, used for reporting and potentially for causing a browsing context group switch
|
|
CrossOriginOpenerPolicyEnforcementResult coop_enforcement_result;
|
|
|
|
// null or an environment reserved for the new Document
|
|
Fetch::Infrastructure::Request::ReservedClientType reserved_environment;
|
|
|
|
// an origin to use for the new Document
|
|
Origin origin;
|
|
|
|
// a policy container to use for the new Document
|
|
PolicyContainer policy_container;
|
|
|
|
// a sandboxing flag set to impose on the new Document
|
|
SandboxingFlagSet final_sandboxing_flag_set = {};
|
|
|
|
// a cross-origin opener policy to use for the new Document
|
|
CrossOriginOpenerPolicy cross_origin_opener_policy;
|
|
|
|
// FIXME: a NavigationTimingType used for creating the navigation timing entry for the new Document
|
|
|
|
// a URL or null used to populate the new Document's about base URL
|
|
Optional<URL::URL> about_base_url;
|
|
};
|
|
|
|
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#non-fetch-scheme-navigation-params
|
|
struct NonFetchSchemeNavigationParams {
|
|
// null or a navigation ID
|
|
Optional<String> id;
|
|
|
|
// the navigable to be navigated
|
|
JS::Handle<Navigable> navigable;
|
|
|
|
// a URL
|
|
URL::URL url;
|
|
|
|
// the target snapshot params's sandboxing flags present during navigation
|
|
SandboxingFlagSet target_snapshot_sandboxing_flags = {};
|
|
|
|
// a copy of the source snapshot params's has transient activation boolean present during activation
|
|
bool source_snapshot_has_transient_activation = { false };
|
|
|
|
// an origin possibly for use in a user-facing prompt to confirm the invocation of an external software package
|
|
Origin initiator_origin;
|
|
|
|
// FIXME: a NavigationTimingType used for creating the navigation timing entry for the new Document
|
|
};
|
|
|
|
}
|