blob: feb4b8568831bc559759cf4303d8279c78ecde24 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>{audio,video} events - timeupdate</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/media.js"></script>
</head>
<body>
<p><a href="https://html.spec.whatwg.org/multipage/#mediaevents">spec reference</a></p>
<audio id="a" controls>
</audio>
<video id="v" controls>
</video>
<div id="log"></div>
<script>
test(function() {
var t = async_test("calling play() on a sufficiently long audio should trigger timeupdate event", {timeout:5000});
var a = document.getElementById("a");
a.addEventListener("timeupdate", function() {
t.done();
a.pause();
}, false);
a.src = getAudioURI("/media/sound_5") + "?" + new Date() + Math.random();
a.play();
}, "audio events - timeupdate");
test(function() {
var t = async_test("calling play() on a sufficiently long video should trigger timeupdate event", {timeout:5000});
var v = document.getElementById("v");
v.addEventListener("timeupdate", function() {
t.done();
v.pause();
}, false);
v.src = getVideoURI("/media/movie_5") + "?" + new Date() + Math.random();
v.play();
}, "video events - timeupdate");
</script>
</body>
</html>