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

LibWeb: Implement CountQueuingStrategy highWaterMark property

This commit is contained in:
Shannon Booth 2023-06-18 19:43:56 +12:00 committed by Andreas Kling
parent 0d714ad165
commit c9941ba95b
6 changed files with 95 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#import <Streams/QueuingStrategyInit.idl>
// https://streams.spec.whatwg.org/#cqs-class-definition
[Exposed=*]
interface CountQueuingStrategy {
constructor(QueuingStrategyInit init);
readonly attribute unrestricted double highWaterMark;
// FIXME: readonly attribute Function size;
};