summaryrefslogtreecommitdiffstats
path: root/dom/browser-element/mochitest/priority/file_Audio.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/browser-element/mochitest/priority/file_Audio.html')
-rw-r--r--dom/browser-element/mochitest/priority/file_Audio.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/dom/browser-element/mochitest/priority/file_Audio.html b/dom/browser-element/mochitest/priority/file_Audio.html
new file mode 100644
index 000000000..97f4dc64d
--- /dev/null
+++ b/dom/browser-element/mochitest/priority/file_Audio.html
@@ -0,0 +1,19 @@
+<html>
+<body>
+
+<script>
+addEventListener('load', function() {
+ setTimeout(function() {
+ var a = document.getElementById('audio');
+ a.onplay = function() {
+ alert('onplay');
+ };
+ a.play();
+ }, 0);
+});
+</script>
+
+<audio id='audio' loop src='silence.ogg'>
+
+</body>
+</html>