blob: 2738a3b4ac6503128e21914e9def6eca34b28b00 [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");
var a = document.getElementById("a");
a.addEventListener("error", t.unreached_func());
a.addEventListener("timeupdate", t.step_func(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");
var v = document.getElementById("v");
v.addEventListener("error", t.unreached_func());
v.addEventListener("timeupdate", t.step_func(function() {
t.done();
v.pause();
}), false);
v.src = getVideoURI("/media/movie_5") + "?" + new Date() + Math.random();
v.play();
}, "video events - timeupdate");
</script>
</body>
</html>