blob: b6fcf7a050c5e06e1e366bfe42d315aa23704794 [file] [log] [blame]
<!DOCTYPE html>
<html>
<style>
video {
width: 480px;
height: 320px;
}
#bar {
margin-top: 5000px;
}
</style>
<script>
function scrollToSecondVideo() {
document.querySelector("#bar").scrollIntoView();
setTimeout(function() {
try {
window.webkit.messageHandlers.testHandler.postMessage("scrolled");
} catch(e) { }
}, 0);
}
function beganAutoplaying() {
setTimeout(function() {
try {
window.webkit.messageHandlers.testHandler.postMessage("autoplayed");
} catch(e) {
}
}, 0)
}
</script>
<body>
<video autoplay onplaying=beganAutoplaying() loop id="foo"><source src="large-video-with-audio.mp4"></video>
<br>
<video id="bar"><source src="large-video-with-audio.mp4"></video>
</body>
<html>