summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/crashtests/1858809.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/workers/test/crashtests/1858809.html')
-rw-r--r--dom/workers/test/crashtests/1858809.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/dom/workers/test/crashtests/1858809.html b/dom/workers/test/crashtests/1858809.html
new file mode 100644
index 0000000000..3a5190c300
--- /dev/null
+++ b/dom/workers/test/crashtests/1858809.html
@@ -0,0 +1,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>