Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /fetch/api/response/many-empty-chunks-crash.html - WPT Dashboard Interop Dashboard
<!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>