| 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 |
| 5 (Please avoid writing new tests using video-test.js) --> |
| 4 <script src=video-test.js></script> | 6 <script src=video-test.js></script> |
| 5 <script> | 7 <script> |
| 6 testExpected("video.paused", true); | 8 testExpected("video.paused", true); |
| 7 | 9 |
| 8 waitForEvent('play', function () { | 10 waitForEvent('play', function () { |
| 9 logResult(false, "PLAY fired"); | 11 logResult(false, "PLAY fired"); |
| 10 endTest(); | 12 endTest(); |
| 11 } ); | 13 } ); |
| 12 | 14 |
| 13 function testPaused () | 15 function testPaused () |
| 14 { | 16 { |
| 15 testExpected("video.paused", true); | 17 testExpected("video.paused", true); |
| 16 endTest(); | 18 endTest(); |
| 17 } | 19 } |
| 18 waitForEvent('canplaythrough', function () { setTimeout(testPaused, 500);} )
; | 20 waitForEvent('canplaythrough', function () { setTimeout(testPaused, 500);} )
; |
| 19 | 21 |
| 20 video.src = findMediaFile("video", "content/test"); | 22 video.src = findMediaFile("video", "content/test"); |
| 21 </script> | 23 </script> |
| OLD | NEW |