blob: f88ee2c9d58a4c49bf8b8e627f9389aba4bbe5c2 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>video events - canplaythrough</title>
<script src="../../w3cwrapper.js"></script>
<script src="../../../Microsoft/common/media.js"></script>
</head>
<body>
<p><a href="http://dev.w3.org/html5/spec/Overview.html#mediaevents">spec reference</a></p>
<video id="a" controls>
</video>
<div id="log"></div>
<script>
var t = async_test("setting src attribute on non-autoplay video should trigger canplaythrough event", {timeout:60000});
var a = document.getElementById("a");
a.addEventListener("canplaythrough", function() {
t.step(function() {
assert_true(true);
});
t.done();
});
a.src = getAudioURI("http://media.w3.org/2010/05/sound/sound_5") + "?" + new Date() + Math.random();
</script>
</body>
</html>