1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 11:37:44 +00:00

LibWeb: Remove outdated version of determine_the_origin()

This commit is contained in:
Aliaksandr Kalenik 2023-09-04 15:50:56 +02:00 committed by Andreas Kling
parent 7b91f79817
commit 1f2ed7effc
3 changed files with 3 additions and 34 deletions

View file

@ -306,7 +306,7 @@ void FrameLoader::resource_did_load()
// (Part of https://html.spec.whatwg.org/#navigating-across-documents)
// 3. Let responseOrigin be the result of determining the origin given browsingContext, resource's url, finalSandboxFlags, and incumbentNavigationOrigin.
// FIXME: Pass incumbentNavigationOrigin
auto response_origin = HTML::determine_the_origin(browsing_context(), url, final_sandboxing_flag_set, {});
// auto response_origin = HTML::determine_the_origin(browsing_context(), url, final_sandboxing_flag_set, {});
auto& vm = Bindings::main_thread_vm();
auto response = Fetch::Infrastructure::Response::create(vm);
@ -315,7 +315,8 @@ void FrameLoader::resource_did_load()
.id = {},
.request = nullptr,
.response = response,
.origin = move(response_origin),
.origin = {},
// .origin = move(response_origin),
.policy_container = HTML::PolicyContainer {},
.final_sandboxing_flag_set = final_sandboxing_flag_set,
.cross_origin_opener_policy = HTML::CrossOriginOpenerPolicy {},