blob: 01406699c1cf9828e58ad6ca275a3dc55773adac [file] [log] [blame]
<video></video>
<p>Test that dataunavailable, timeupdate and waiting events are sent when media load stalls in the middle.</p>
<script src=../../../media/video-test.js></script>
<script>
waitForEvent('durationchange');
waitForEvent('loadedmetadata');
waitForEvent('loadedfirstframe');
waitForEvent('canshowcurrentframe');
waitForEvent('canplay', function () {
waitForEvent('dataunavailable');
waitForEvent('timeupdate');
waitForEventAndEnd('waiting');
} );
video.src = "http://127.0.0.1:8000/media/video-load-and-stall.cgi?name=../../../media/content/test.mp4&stallAt=100000";
video.play();
</script>