blob: 7735883d49ecc6945a061556322d8d2ec1fb1ee4 [file] [edit]
// META: global=window,worker
// META: script=resources/decompression-input.js
'use strict';
for (const [format, chunkValue] of compressedBytes) {
promise_test(async t => {
const ds = new DecompressionStream(format);
const reader = ds.readable.getReader();
const writer = ds.writable.getWriter();
const writePromise = writer.write(chunkValue);
const { value } = await reader.read();
assert_equals(value.constructor, Uint8Array, "type should match");
await writePromise;
}, `decompressing ${format} output should give Uint8Array chunks`);
}