Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /compression/idlharness.https.any.html - WPT Dashboard Interop Dashboard
- /compression/idlharness.https.any.shadowrealm-in-window.html - WPT Dashboard Interop Dashboard
- /compression/idlharness.https.any.worker.html - WPT Dashboard Interop Dashboard
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: global=window,dedicatedworker,shadowrealm-in-window
'use strict';
idl_test(
['compression'],
['streams'],
idl_array => {
idl_array.add_objects({
CompressionStream: ['new CompressionStream("deflate")'],
DecompressionStream: ['new DecompressionStream("deflate")'],
});
}
);