Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / media / W3C / video / events / event_pause_manual.html
blob2861f62868c1bfc919023570700d705fd36642a5
1 <!doctype html>
2 <html>
3 <head>
4 <title>video events - pause</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() then pause() on non-autoplay video should trigger pause event", {timeout:30000});
14 var v = document.getElementById("v");
15 v.addEventListener("pause", function() {
16 t.step(function() {
17 assert_true(true);
18 });
19 t.done();
20 });
21 v.src = getVideoURI("http://media.w3.org/2010/05/video/movie_300") + "?" + new Date() + Math.random();
22 v.play();
23 v.pause();
24 </script>
25 </body>
26 </html>