PR-URL: https://github.com/nodejs/node/pull/56960 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
18 lines
435 B
JavaScript
18 lines
435 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
// META: global=window,dedicatedworker,shadowrealm-in-window
|
|
|
|
'use strict';
|
|
|
|
// https://wicg.github.io/compression/
|
|
|
|
idl_test(
|
|
['compression'],
|
|
['streams'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
CompressionStream: ['new CompressionStream("deflate")'],
|
|
DecompressionStream: ['new DecompressionStream("deflate")'],
|
|
});
|
|
}
|
|
);
|