OLD | NEW |
1 <video controls></video> | 1 <video controls></video> |
2 <p>Test that play event does not fire when "src" set with no autoplay attribute.
</p> | 2 <p>Test that play event does not fire when "src" set with no autoplay attribute.
</p> |
3 <script src=media-file.js></script> | 3 <script src=media-file.js></script> |
4 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 | 4 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956 |
5 (Please avoid writing new tests using video-test.js) --> | 5 (Please avoid writing new tests using video-test.js) --> |
6 <script src=video-test.js></script> | 6 <script src=video-test.js></script> |
7 <script> | 7 <script> |
8 testExpected("video.paused", true); | 8 testExpected("video.paused", true); |
9 | 9 |
10 waitForEvent('play', function () { | 10 waitForEvent('play', function () { |
11 logResult(false, "PLAY fired"); | 11 logResult(false, "PLAY fired"); |
12 endTest(); | 12 endTest(); |
13 } ); | 13 } ); |
14 | 14 |
15 function testPaused () | 15 function testPaused () |
16 { | 16 { |
17 testExpected("video.paused", true); | 17 testExpected("video.paused", true); |
18 endTest(); | 18 endTest(); |
19 } | 19 } |
20 waitForEvent('canplaythrough', function () { setTimeout(testPaused, 500);} )
; | 20 waitForEvent('canplaythrough', function () { setTimeout(testPaused, 500);} )
; |
21 | 21 |
22 video.src = findMediaFile("video", "content/test"); | 22 video.src = findMediaFile("video", "content/test"); |
23 </script> | 23 </script> |
OLD | NEW |