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