blob: ace3320b7f2c7c98c432cd52ddf0ade30d3f4c9e (
plain)
1
2
3
4
5
6
7
8
9
10
|
if (window.testRunner)
testRunner.waitUntilDone();
function setupVideo(videoElement, videoPath, canPlayThroughCallback)
{
var mediaFile = findMediaFile("video", videoPath);
videoElement.addEventListener("canplaythrough", canPlayThroughCallback);
videoElement.src = mediaFile;
}
|