blob: a70e05a71a351e8bd15b97d32a1e073342a3aec4 [file] [log] [blame]
<video src=content/test.mp4 controls></video>
<script src=video-test.js></script>
<script>
waitForEvent('load',
function () {
video.currentTime = video.duration - 0.2;
video.play();
waitForEvent('timeupdate',
function () {
setTimeout(function () { test("false") }, 800);
});
waitForEventAndEnd('ended');
});
video.src = "content/test.mp4";
</script>