LibWeb/Fetch: Implement the "set the Sec-Fetch-Site header" AO

This commit is contained in:
Jamie Mansfield 2024-04-29 20:56:30 +01:00 committed by Andreas Kling
parent 5eb46a5f01
commit 1ff90aa3e0
Notes: sideshowbarker 2024-07-16 18:03:21 +09:00
2 changed files with 40 additions and 0 deletions

View file

@ -41,4 +41,5 @@ WebIDL::ExceptionOr<JS::NonnullGCPtr<PendingResponse>> nonstandard_resource_load
WebIDL::ExceptionOr<JS::NonnullGCPtr<PendingResponse>> cors_preflight_fetch(JS::Realm&, Infrastructure::Request&);
void set_sec_fetch_dest_header(Infrastructure::Request&);
void set_sec_fetch_mode_header(Infrastructure::Request&);
void set_sec_fetch_site_header(Infrastructure::Request&);
}