Changeset 158752 in webkit
- Timestamp:
- Nov 6, 2013, 9:31:44 AM (11 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r158744 r158752 1 2013-11-06 Jer Noble <jer.noble@apple.com> 2 3 Unreviewed gardening; Fix expected results for video-seek-with-negative-playback.html, 4 and modify the test to conform to media test style. 5 6 * media/video-seek-with-negative-playback-expected.txt: 7 * media/video-seek-with-negative-playback.html: 8 1 9 2013-10-24 Sergio Villar Senin <svillar@igalia.com> 2 10 -
trunk/LayoutTests/media/video-seek-with-negative-playback-expected.txt
r158734 r158752 1 2 Test that seeking with a negative playbackRate works correctly. 3 1 4 EVENT(canplaythrough) 2 5 EVENT(seeked) -
trunk/LayoutTests/media/video-seek-with-negative-playback.html
r158734 r158752 1 <!DOCTYPE html> 1 2 <html> 2 3 <head> … … 8 9 findMediaElement(); 9 10 video.src = findMediaFile("video", "content/test"); 10 waitForEventOnce('canplaythrough', 11 function () { 12 video.playbackRate = -1; 13 video.currentTime = 3; 14 waitForEventOnce('seeked', function () { 15 waitForEvent('timeupdate', function () { 16 if (lastTime == -1) { 17 lastTime = video.currentTime; 18 return; 19 } 20 testExpected("video.currentTime", 3, "<"); 21 endTest(); 22 }); 23 }); 24 video.play(); 25 }); 11 waitForEventOnce('canplaythrough', canPlayThrough); 12 } 13 14 function canPlayThrough() { 15 video.playbackRate = -1; 16 video.currentTime = 3; 17 waitForEventOnce('seeked', seeked); 18 video.play(); 19 } 20 21 function seeked() { 22 waitForEvent('timeupdate', timeupdate); 23 } 24 25 function timeupdate() { 26 if (lastTime == -1) { 27 lastTime = video.currentTime; 28 return; 29 } 30 testExpected("video.currentTime", 3, "<"); 31 endTest(); 26 32 } 27 33 </script> 28 34 </head> 29 35 <body onload="start()"> 30 <video/> 36 <video></video> 37 <p>Test that seeking with a negative playbackRate works correctly.</p> 31 38 </body> 32 39 </html>
Note:
See TracChangeset
for help on using the changeset viewer.