Files
tubestation/testing/web-platform/tests/interfaces/compression.idl
Philip Jägenstedt 48045c3059 Bug 1665398 [wpt PR 25568] - Update interfaces/compression.idl and test, a=testonly
Automatic update from web-platform-tests
Update interfaces/compression.idl and test (#25568)

* Update interfaces/compression.idl

Source: https://github.com/w3c/webref/blob/fdd4fe0/ed/idl/compression.idl
Build: https://travis-ci.org/w3c/webref/builds/184515739

* Add streams as dependency for compression IDL test

Co-authored-by: autofoolip <auto@foolip.org>
--

wpt-commits: 0cc8d69159a6c14c6c103a40bb1cd4e4c633eb2a
wpt-pr: 25568
2020-09-23 09:02:44 +00:00

17 lines
491 B
Plaintext

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// (https://github.com/w3c/webref)
// Source: Compression Streams (https://wicg.github.io/compression/)
[Exposed=(Window,Worker)]
interface CompressionStream {
constructor(DOMString format);
};
CompressionStream includes GenericTransformStream;
[Exposed=(Window,Worker)]
interface DecompressionStream {
constructor(DOMString format);
};
DecompressionStream includes GenericTransformStream;