Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
LayoutTests
/
js
/
fetch-response-json-crash.html
blob: e19185320167f59a4cad978adefe9b3b2a93cd6b [
file
] [
log
] [
blame
] [
edit
]
<script>
onload
=
async
()
=>
{
if
(
window
.
testRunner
)
testRunner
.
dumpAsText
();
for
(
let i
=
0
;
i
<
100
;
i
++)
{
await caches
.
has
(
'a'
);
Response
.
json
({});
}
};
</script>