summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/api/crashtests/body-window-destroy.html
blob: 646d3c5f8ce9e6591e6bd1eb2096e36d611a8899 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!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>