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