blob: 3e3fc0e593c15da8f211c9c1234bbecdb467d59f [file] [edit]
<!DOCTYPE html>
<html>
<head>
<script>
function go() {
var audio = document.getElementsByTagName('audio')[0];
audio.play().then(playing)
}
function playing() {
setTimeout(function() {
try {
window.webkit.messageHandlers.testHandler.postMessage("playing");
} catch(e) {
}
}, 0);
}
</script>
</head>
<body>
<audio src="video-with-audio.mp4" controls></audio>
</body>
</html>