Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: LayoutTests/media/media-controller-playbackrate.html

Issue 431903003: Always notify the MediaPlayer of any seek. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: nits Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/media/media-controller-playbackrate.html
diff --git a/LayoutTests/media/media-controller-playbackrate.html b/LayoutTests/media/media-controller-playbackrate.html
index e5a142b44a91494a8e26532d624c85a48e3cda43..e01f3420aa8b18e29cc1aa0e97d9bf179753d7c2 100644
--- a/LayoutTests/media/media-controller-playbackrate.html
+++ b/LayoutTests/media/media-controller-playbackrate.html
@@ -4,13 +4,15 @@
<script src=media-file.js></script>
<script src=video-test.js></script>
<script>
- var start = function() {
+ var start = function()
+ {
findMediaElement();
- waitForEvent('canplay',canplay);
+ waitForEventOnce('canplay',canplay);
video.src = findMediaFile('video', 'content/test');
};
- var canplay = function() {
+ var canplay = function()
+ {
video.mediaGroup = "group";
// Test non-finite rates.
@@ -28,14 +30,19 @@
video.controller.defaultPlaybackRate = 0;
waitForEvent('play', play);
video.play();
+ };
+
+ var play = function()
+ {
+ video.controller.playbackRate = 2;
+ waitForEventOnce("playing", function()
+ {
+ waitForEventOnce("timeupdate", timeupdate);
+ });
};
- var play = function() {
- video.controller.playbackRate = 2;
- waitForEventOnce('timeupdate', timeupdate);
- };
-
- var timeupdate = function() {
+ var timeupdate = function()
+ {
testExpected('video.currentTime', 0, '!=');
endTest();
};

Powered by Google App Engine
This is Rietveld 408576698