1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 03:08:13 +00:00

LibWeb: Implement 'create a potential-CORS request' algorithm

This commit is contained in:
Srikavin Ramkumar 2023-01-14 19:00:42 +05:30 committed by Linus Groh
parent 3e2e94bd01
commit f7176463b5
6 changed files with 122 additions and 0 deletions

View file

@ -0,0 +1,23 @@
/*
* Copyright (c) 2023, Srikavin Ramkumar <me@srikavin.me>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/URL.h>
#include <LibJS/Heap/GCPtr.h>
#include <LibWeb/Fetch/Infrastructure/HTTP/Requests.h>
#include <LibWeb/HTML/CORSSettingAttribute.h>
namespace Web::HTML {
enum class SameOriginFallbackFlag {
No,
Yes,
};
[[nodiscard]] JS::NonnullGCPtr<Fetch::Infrastructure::Request> create_potential_CORS_request(JS::VM&, const AK::URL&, Optional<Fetch::Infrastructure::Request::Destination>, CORSSettingAttribute, SameOriginFallbackFlag = SameOriginFallbackFlag::No);
}