mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:57:44 +00:00
LibWeb: Implement CountQueuingStrategy highWaterMark property
This commit is contained in:
parent
0d714ad165
commit
c9941ba95b
6 changed files with 95 additions and 0 deletions
11
Userland/Libraries/LibWeb/Streams/CountQueuingStrategy.idl
Normal file
11
Userland/Libraries/LibWeb/Streams/CountQueuingStrategy.idl
Normal 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue