blob: 8ffb0c5faa36976bc3d44e49cd3b6e1e1f519360 [file] [log] [blame]
<html>
<head>
<script>
function pageLoaded() {
var video = document.getElementById("video");
video.volume = 0;
video.play().then(function() {
try {
window.webkit.messageHandlers.testHandler.postMessage("autoplayed");
} catch(e) { }
}).catch(function() {
try {
window.webkit.messageHandlers.testHandler.postMessage("did-not-play");
} catch(e) { }
});
}
</script>
</head>
<body onload="pageLoaded()">
<video id="video" playsinline src="test.mp4" />
</body>
</html>