diff options
Diffstat (limited to '')
-rw-r--r-- | dom/media/test/crashtests/1708790.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dom/media/test/crashtests/1708790.html b/dom/media/test/crashtests/1708790.html new file mode 100644 index 0000000000..ee97a31c81 --- /dev/null +++ b/dom/media/test/crashtests/1708790.html @@ -0,0 +1,22 @@ +<html class="reftest-wait"> +<head> +<script> +(async _ => { + try { + const audio = document.createElement('audio'); + audio.src = 'sound.ogg'; + const ac = new AudioContext(); + const src = ac.createMediaElementSource(audio); + src.connect(ac.destination); + await audio.play(); + audio.pause(); + audio.volume = 0.5; + audio.playbackRate = 0.5; + audio.preservesPitch = false; + } finally { + document.documentElement.removeAttribute("class") + } +})() +</script> +</head> +</html> |