1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:37:35 +00:00

LibWeb: Implement '5.4. Request class' from the Fetch API :^)

This commit is contained in:
Linus Groh 2022-09-25 19:33:13 +01:00
parent 5ad6283331
commit 9fb672e981
13 changed files with 1146 additions and 3 deletions

View file

@ -120,16 +120,18 @@ set(SOURCES
Encoding/TextEncoder.cpp
Fetch/Body.cpp
Fetch/BodyInit.cpp
Fetch/Enums.cpp
Fetch/Headers.cpp
Fetch/HeadersIterator.cpp
Fetch/Infrastructure/HTTP.cpp
Fetch/Infrastructure/URL.cpp
Fetch/Infrastructure/HTTP/Bodies.cpp
Fetch/Infrastructure/HTTP/Headers.cpp
Fetch/Infrastructure/HTTP/Methods.cpp
Fetch/Infrastructure/HTTP/Requests.cpp
Fetch/Infrastructure/HTTP/Responses.cpp
Fetch/Infrastructure/HTTP/Statuses.cpp
Fetch/Infrastructure/URL.cpp
Fetch/Request.cpp
FileAPI/Blob.cpp
FileAPI/File.cpp
FontCache.cpp