1
0
Fork 0
firefox/testing/web-platform/tests/fetch/api/response/response-stream-disturbed-by-pipe.any.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

17 lines
666 B
JavaScript

// META: global=window,worker
test(() => {
const r = new Response(new ReadableStream());
// highWaterMark: 0 means that nothing will actually be read from the body.
r.body.pipeTo(new WritableStream({}, {highWaterMark: 0}));
assert_true(r.bodyUsed, 'bodyUsed should be true');
}, 'using pipeTo on Response body should disturb it synchronously');
test(() => {
const r = new Response(new ReadableStream());
r.body.pipeThrough({
writable: new WritableStream({}, {highWaterMark: 0}),
readable: new ReadableStream()
});
assert_true(r.bodyUsed, 'bodyUsed should be true');
}, 'using pipeThrough on Response body should disturb it synchronously');