1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01: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

@ -303,6 +303,8 @@
#include <LibWeb/Bindings/RangePrototype.h>
#include <LibWeb/Bindings/ReadableStreamConstructor.h>
#include <LibWeb/Bindings/ReadableStreamPrototype.h>
#include <LibWeb/Bindings/RequestConstructor.h>
#include <LibWeb/Bindings/RequestPrototype.h>
#include <LibWeb/Bindings/ResizeObserverConstructor.h>
#include <LibWeb/Bindings/ResizeObserverPrototype.h>
#include <LibWeb/Bindings/SVGAnimatedLengthConstructor.h>
@ -546,6 +548,7 @@
ADD_WINDOW_OBJECT_INTERFACE(PromiseRejectionEvent) \
ADD_WINDOW_OBJECT_INTERFACE(Range) \
ADD_WINDOW_OBJECT_INTERFACE(ReadableStream) \
ADD_WINDOW_OBJECT_INTERFACE(Request) \
ADD_WINDOW_OBJECT_INTERFACE(ResizeObserver) \
ADD_WINDOW_OBJECT_INTERFACE(Screen) \
ADD_WINDOW_OBJECT_INTERFACE(Selection) \