blob: 6c320093e9ef944ddf599faea0a4420222ee91f3 [file] [log] [blame]
<html>
<head>
<script src=media-file.js></script>
<script src=video-test.js></script>
<script>
function start() {
findMediaElement();
waitForEventAndEnd('ended');
video.src = findMediaFile("video", "content/test");
waitForEventOnce('canplaythrough',
function ()
{
video.currentTime = 0.5;
video.playbackRate = -1;
video.play();
failTestIn(2500);
});
}
</script>
</head>
<body onload="start()">
<video loop />
</body>
</html>