Sign in
chromium
/
external
/
w3c
/
web-platform-tests
/
refs/heads/DOMParser-interface
/
.
/
fetch
/
api
/
response
/
many-empty-chunks-crash.html
blob: fe5e7d4c0754a0c53a474be6d28de892dc9451c8 [
file
] [
log
] [
blame
] [
edit
]
<!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>