1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:47:46 +00:00

LibWeb: Implement ReadableStreamBYOBRequest.respondWithNewView

The AO behind this prototype was added in commit ed1076d9ca,
so we can now trivially expose the prototype as well.
This commit is contained in:
Timothy Flynn 2024-01-29 07:50:36 -05:00 committed by Tim Flynn
parent 3c11a1551d
commit 5a99a6afb4
5 changed files with 103 additions and 1 deletions

View file

@ -4,5 +4,5 @@ interface ReadableStreamBYOBRequest {
readonly attribute ArrayBufferView? view;
undefined respond([EnforceRange] unsigned long long bytesWritten);
// FIXME: undefined respondWithNewView(ArrayBufferView view);
undefined respondWithNewView(ArrayBufferView view);
};