blob: f237b1fbd332bf89a70f450abded707e8545dd74 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>{audio,video} events - readyState property during loadeddata</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" autoplay controls>
</audio>
<video id="v" autoplay controls>
</video>
<div id="log"></div>
<script>
test(function() {
var t = async_test("audio.readyState should be >= HAVE_CURRENT_DATA during loadeddata event");
var a = document.getElementById("a");
a.addEventListener("error", t.unreached_func());
a.addEventListener("loadeddata", t.step_func(function() {
assert_greater_than_equal(a.readyState, a.HAVE_CURRENT_DATA);
t.done();
a.pause();
}), false);
a.src = getAudioURI("/media/sound_5") + "?" + new Date() + Math.random();
}, "audio events - readyState property during loadeddata");
test(function() {
var t = async_test("video.readyState should be >= HAVE_CURRENT_DATA during loadeddata event");
var v = document.getElementById("v");
v.addEventListener("error", t.unreached_func());
v.addEventListener("loadeddata", t.step_func(function() {
assert_greater_than_equal(v.readyState, v.HAVE_CURRENT_DATA);
t.done();
v.pause();
}), false);
v.src = getVideoURI("/media/movie_5") + "?" + new Date() + Math.random();
}, "video events - readyState property during loadeddata");
</script>
</body>
</html>