summaryrefslogtreecommitdiffstats
path: root/dom/media/test/crashtests/buffer-source-duration-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/test/crashtests/buffer-source-duration-1.html')
-rw-r--r--dom/media/test/crashtests/buffer-source-duration-1.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/dom/media/test/crashtests/buffer-source-duration-1.html b/dom/media/test/crashtests/buffer-source-duration-1.html
new file mode 100644
index 0000000000..df8d7a37d5
--- /dev/null
+++ b/dom/media/test/crashtests/buffer-source-duration-1.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<script>
+const rate = 44100;
+var context = new window.OfflineAudioContext(1, 512, rate);
+var buffer = context.createBuffer(1, 128, rate);
+var source = context.createBufferSource();
+source.buffer = buffer;
+source.start(0, 0, 86400);
+context.startRendering().
+ then(function() {
+ document.documentElement.removeAttribute("class");
+ });
+</script>