android13/external/autotest/client/site_tests/desktopui_MediaAudioFeedback/play.html

12 lines
170 B
HTML

<html>
<script>
function play(media_file) {
player.src = media_file;
player.play();
}
</script>
<body>
<audio controls id="player"></audio>
</body>
</html>