OLD | NEW |
1 <video></video> | 1 <video></video> |
2 <p>Test that stalled, timeupdate and waiting events are sent when media load sta
lls in the middle.</p> | 2 <p>Test that stalled, timeupdate and waiting events are sent when media load sta
lls in the middle.</p> |
3 <script src=../../media-resources/media-file.js></script> | 3 <script src=../../media-resources/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=../../media-resources/video-test.js></script> | 6 <script src=../../media-resources/video-test.js></script> |
5 <script> | 7 <script> |
6 | 8 |
7 var timeupdateCount = 0; | 9 var timeupdateCount = 0; |
8 var waitingCount = 0; | 10 var waitingCount = 0; |
9 | 11 |
10 waitForEvent('durationchange'); | 12 waitForEvent('durationchange'); |
11 waitForEvent('loadedmetadata'); | 13 waitForEvent('loadedmetadata'); |
12 waitForEvent('loadeddata'); | 14 waitForEvent('loadeddata'); |
13 waitForEvent('canplaythrough'); | 15 waitForEvent('canplaythrough'); |
(...skipping 18 matching lines...) Expand all Loading... |
32 waitForEventAndEnd('stalled'); | 34 waitForEventAndEnd('stalled'); |
33 } ); | 35 } ); |
34 | 36 |
35 // Find a supported media file. | 37 // Find a supported media file. |
36 var mediaFile = findMediaFile("video", "content/test"); | 38 var mediaFile = findMediaFile("video", "content/test"); |
37 var mimeType = mimeTypeForFile(mediaFile); | 39 var mimeType = mimeTypeForFile(mediaFile); |
38 | 40 |
39 video.src = "http://127.0.0.1:8000/resources/load-and-stall.cgi?name=../../.
./media/" + mediaFile + "&mimeType=" + mimeType + "&stallAt=100000&stallFor=6"; | 41 video.src = "http://127.0.0.1:8000/resources/load-and-stall.cgi?name=../../.
./media/" + mediaFile + "&mimeType=" + mimeType + "&stallAt=100000&stallFor=6"; |
40 run("video.play()"); | 42 run("video.play()"); |
41 </script> | 43 </script> |
OLD | NEW |