blob: ff6523d888d5bab297207fd38ef7ce2e82f051a7 [file] [log] [blame]
if (window.testRunner)
testRunner.waitUntilDone();
function setupVideo(videoElement, videoPath, canPlayThroughCallback)
{
videoElement.addEventListener("canplaythrough", canPlayThroughCallback);
videoElement.preload = "auto";
videoElement.src = videoPath;
}