summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/crashtests/1858809.html
blob: 3a5190c300d64994f8a5e0b04ce9ca83ab748377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE>
<html>
<head>
<meta charset="UTF-8">
<script>
document.addEventListener("DOMContentLoaded", () => {
  const a = new Worker("", {})
  const b = new Blob([""], {})
  a.terminate()
  new RTCRtpScriptTransform(a, b, [{}])
})
</script>
</head>
</html>