summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/compression/idlharness.https.any.js
blob: 8d96cf523c495389ec5bfdea921a65d4dd0cd1e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

'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")'],
    });
  }
);