1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:38:10 +00:00

LibWeb: Implement the fetch response's unsafe response AO

This commit is contained in:
Timothy Flynn 2023-05-10 16:57:23 -04:00 committed by Andreas Kling
parent e4cb27050a
commit dff0e8a0dc
2 changed files with 12 additions and 0 deletions

View file

@ -170,6 +170,16 @@ WebIDL::ExceptionOr<JS::NonnullGCPtr<Response>> Response::clone(JS::Realm& realm
return new_response;
}
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#unsafe-response
JS::NonnullGCPtr<Response> Response::unsafe_response()
{
// A response's unsafe response is its internal response if it has one, and the response itself otherwise.
if (is<FilteredResponse>(this))
return static_cast<FilteredResponse&>(*this).internal_response();
return *this;
}
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-cross-origin
bool Response::is_cors_cross_origin() const
{