mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-23 01:38:56 +00:00
LibWeb: Start fleshing out the ReadableStream interface
This is so we can just assume it exists in Fetch APIs (while still skipping functionality that relies on a full implementation, of course).
This commit is contained in:
parent
1ace80235b
commit
87654f5b51
Notes:
sideshowbarker
2024-07-18 02:13:10 +09:00
Author: https://github.com/linusg
Commit: 87654f5b51
Pull-request: https://github.com/SerenityOS/serenity/pull/15323
Reviewed-by: https://github.com/davidot ✅
Reviewed-by: https://github.com/kennethmyhra ✅
9 changed files with 199 additions and 4 deletions
|
@ -301,6 +301,8 @@
|
|||
#include <LibWeb/Bindings/PromiseRejectionEventPrototype.h>
|
||||
#include <LibWeb/Bindings/RangeConstructor.h>
|
||||
#include <LibWeb/Bindings/RangePrototype.h>
|
||||
#include <LibWeb/Bindings/ReadableStreamConstructor.h>
|
||||
#include <LibWeb/Bindings/ReadableStreamPrototype.h>
|
||||
#include <LibWeb/Bindings/ResizeObserverConstructor.h>
|
||||
#include <LibWeb/Bindings/ResizeObserverPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGAnimatedLengthConstructor.h>
|
||||
|
@ -543,6 +545,7 @@
|
|||
ADD_WINDOW_OBJECT_INTERFACE(ProgressEvent) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(PromiseRejectionEvent) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Range) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(ReadableStream) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(ResizeObserver) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Screen) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Selection) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue