servo/tests/wpt/web-platform-tests/fetch/api/response/many-empty-chunks-crash.html

14 lines
243 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<script>
new Response(new ReadableStream({
start(c) {
for (const i of new Array(40000).fill()) {
c.enqueue(new Uint8Array(0));
}
c.close();
}
})).text();
</script>