LibWeb: Implement the DecompressionStream interface

This commit is contained in:
Timothy Flynn 2024-11-15 14:40:04 -05:00 committed by Andreas Kling
commit 5bcba896c2
Notes: github-actions[bot] 2024-11-17 22:21:51 +00:00
9 changed files with 283 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#import <Compression/CompressionStream.idl>
#import <Streams/GenericTransformStream.idl>
// https://compression.spec.whatwg.org/#decompressionstream
[Exposed=*]
interface DecompressionStream {
constructor(CompressionFormat format);
};
DecompressionStream includes GenericTransformStream;