summaryrefslogtreecommitdiffstats
path: root/dom/media/test/crashtests/1835164.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/test/crashtests/1835164.html')
-rw-r--r--dom/media/test/crashtests/1835164.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/dom/media/test/crashtests/1835164.html b/dom/media/test/crashtests/1835164.html
new file mode 100644
index 0000000000..702e082954
--- /dev/null
+++ b/dom/media/test/crashtests/1835164.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<audio id=a src=1835164.opus controls autoplay></audio>
+<script>
+a.onloadedmetadata = function() {
+ a.currentTime = 1e40;
+ a.play();
+}
+a.onplaying = function() {
+ document.documentElement.removeAttribute("class");
+}
+</script>
+</html>