mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
c07e36b612
--HG-- rename : dom/webidl/BrowserElementAudioChannel.webidl => dom/audiochannel/AudioChannelCommon.h rename : dom/browser-element/mochitest/test_browserElement_oop_AudioChannel.html => dom/audiochannel/tests/file_telephonyPolicy.html
16 lines
290 B
HTML
16 lines
290 B
HTML
<html>
|
|
<body>
|
|
<audio src="http://mochi.test:8888/tests/dom/browser-element/mochitest/audio.ogg" id="audio" />
|
|
<script>
|
|
var audio = document.getElementById('audio');
|
|
audio.play();
|
|
audio.onended = function() {
|
|
setTimeout(function() {
|
|
audio.play();
|
|
}, 0);
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|