Sign in
chromium
/
external
/
github.com
/
web-platform-tests
/
wpt
/
refs/heads/tt-function
/
.
/
fetch
/
api
/
crashtests
/
body-window-destroy.html
blob: 646d3c5f8ce9e6591e6bd1eb2096e36d611a8899 [
file
] [
log
] [
blame
] [
edit
]
<!DOCTYPE html>
<meta
charset
=
"utf-8"
>
<iframe srcdoc='
<script>
let a
=
new
Blob
([
"a"
,
"ð¢¾"
],
{})
let b
=
new
Response
(
a
)
try
{
let _
=
b
.
body
}
catch
(
e
)
{
}
frameElement
.
remove
()
b
.
json
().
catch
(()
=>
{})
</script>
'>
</iframe>