blob: 649c95c4b11396d99d5f6018ba1cf53fc679fb41 [file] [log] [blame]
<html>
<head>
<script>
function pageLoaded() {
try {
window.webkit.messageHandlers.testHandler.postMessage("loaded");
} catch(e) { }
}
function beganPlaying() {
document.getElementById("video").muted = false;
}
function play() {
document.getElementById("video").play();
}
</script>
</head>
<body onload="pageLoaded()">
<button onclick="play()">Play</button>
<video id="video" onplaying="beganPlaying()" muted autoplay src="test.mp4" />
</body>
</html>