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

LibWeb: Implement TransformStreamDefaultController::error()

This commit is contained in:
Kenneth Myhra 2023-07-07 16:29:32 +02:00 committed by Andreas Kling
parent 9efcc01387
commit 2d0a2756b4
3 changed files with 11 additions and 1 deletions

View file

@ -4,6 +4,6 @@ interface TransformStreamDefaultController {
readonly attribute unrestricted double? desiredSize;
// FIXME: undefined enqueue(optional any chunk);
// FIXME: undefined error(optional any reason);
undefined error(optional any reason);
// FIXME: undefined terminate();
};