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