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

LibWeb: Implement size attribute of CountQueuingStrategy

Co-authored-by: Matthew Olsson <mattco@serenityos.org>
This commit is contained in:
Shannon Booth 2023-06-23 08:46:46 +12:00 committed by Andreas Kling
parent 6d93692bc5
commit 49689e5d8e
5 changed files with 41 additions and 1 deletions

View file

@ -1,3 +1,4 @@
#import <WebIDL/Function.idl>
#import <Streams/QueuingStrategyInit.idl>
// https://streams.spec.whatwg.org/#cqs-class-definition
@ -7,5 +8,5 @@ interface CountQueuingStrategy {
readonly attribute unrestricted double highWaterMark;
// FIXME: readonly attribute Function size;
readonly attribute Function size;
};