summaryrefslogtreecommitdiffstats
path: root/dom/media/test/crashtests/1185192.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/test/crashtests/1185192.html')
-rw-r--r--dom/media/test/crashtests/1185192.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/dom/media/test/crashtests/1185192.html b/dom/media/test/crashtests/1185192.html
new file mode 100644
index 0000000000..46fa311aa2
--- /dev/null
+++ b/dom/media/test/crashtests/1185192.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+
+function boom()
+{
+ new Audio().mozCaptureStreamUntilEnded();
+ var ac = new window.AudioContext();
+ ac.resume();
+ ac.close();
+}
+
+</script>
+</head>
+<body onload="boom();"></body>
+</html>
+