diff options
Diffstat (limited to 'dom/media/test/crashtests/1850453.html')
-rw-r--r-- | dom/media/test/crashtests/1850453.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dom/media/test/crashtests/1850453.html b/dom/media/test/crashtests/1850453.html new file mode 100644 index 0000000000..d2aa54bc6a --- /dev/null +++ b/dom/media/test/crashtests/1850453.html @@ -0,0 +1,12 @@ +<html class="reftest-wait"> +<audio id=a src=1850453.flac controls></audio> +<script> + a.play(); + a.onplaying = function() { + a.currentTime = 0.5; + } + a.onseeked = function () { + document.documentElement.removeAttribute("class") + } +</script> +</html> |