blob: 0c81f335bb535eee2c1fe23b9fc10280a64923bb [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>{audio,video} events - 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" controls>
</audio>
<video id="v" controls>
</video>
<div id="log"></div>
<script>
test(function() {
var t = async_test("setting src attribute on non-autoplay audio should trigger loadeddata event", {timeout:5000});
var a = document.getElementById("a");
a.addEventListener("loadeddata", function() {
t.done();
}, false);
a.src = getAudioURI("/media/sound_5") + "?" + new Date() + Math.random();
}, "audio events - loadeddata");
test(function() {
var t = async_test("setting src attribute on non-autoplay video should trigger loadeddata event", {timeout:5000});
var v = document.getElementById("v");
v.addEventListener("loadeddata", function() {
t.done();
}, false);
v.src = getVideoURI("/media/movie_5") + "?" + new Date() + Math.random();
}, "video events - loadeddata");
</script>
</body>
</html>