Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / media / W3C / video / events / event_playing_manual.html
blob8df480750337bcd52c714f39d6e868006ce8925f
1 <!doctype html>
2 <html>
3 <head>
4 <title>video events - playing</title>
5 <script src="../../w3cwrapper.js"></script>
6 </head>
7 <body>
8 <p><a href="http://dev.w3.org/html5/spec/Overview.html#mediaevents">spec reference</a></p>
9 <video id="v" controls>
10 </video>
11 <div id="log"></div>
12 <script>
13 var t = async_test("calling play() on video should trigger playing event", {timeout:30000});
14 var v = document.getElementById("v");
15 v.addEventListener("playing", function() {
16 t.step(function() {
17 assert_true(true);
18 });
19 t.done();
20 v.pause();
21 });
22 v.src = getVideoURI("http://media.w3.org/2010/05/video/movie_300") + "?" + new Date() + Math.random();
23 v.play();
24 </script>
25 </body>
26 </html>