gecko-dev/dom/browser-element/mochitest/file_browserElement_MultipleAudioChannels.html
Alastor Wu ca7e1cc83e Bug 1223297 - Add multiple audio channel test. r=baku
--HG--
extra : rebase_source : d7db5c56be6422c314479e20470bdd2f84a8f999
2015-11-18 10:01:14 +08:00

12 lines
194 B
HTML

<html>
<body>
<script>
var audio1 = new Audio("audio.ogg");
var audio2 = new Audio("audio.ogg");
audio2.mozAudioChannelType = "content";
audio1.play();
audio2.play();
</script>
</body>
</html>