diff options
Diffstat (limited to 'dom/media/test/crashtests/1228484.html')
-rw-r--r-- | dom/media/test/crashtests/1228484.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dom/media/test/crashtests/1228484.html b/dom/media/test/crashtests/1228484.html new file mode 100644 index 000000000..2b2e9b0f9 --- /dev/null +++ b/dom/media/test/crashtests/1228484.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> +<head> +<script> + +var htmlAudio = new Audio(URL.createObjectURL(new window.MediaSource())); + +(new window.AudioContext("ringer")).createMediaElementSource(htmlAudio); +(new window.AudioContext("alarm")).createMediaElementSource(htmlAudio); + +</script> +</head> +</html> |