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

Unified Diff: LayoutTests/media/video-double-seek-currentTime.html

Issue 456343002: Relanding 'Always notify the MediaPlayer of any seek' patch (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed LayoutTests/media/video-double-seek-currentTime.html failure Created 6 years 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/video-double-seek-currentTime.html
diff --git a/LayoutTests/media/video-double-seek-currentTime.html b/LayoutTests/media/video-double-seek-currentTime.html
index 028352db94b4b8fcfd2404135340de0f07daebf3..d615f3b3c42f46a61a66e8d3c64f328130701bb3 100644
--- a/LayoutTests/media/video-double-seek-currentTime.html
+++ b/LayoutTests/media/video-double-seek-currentTime.html
@@ -10,9 +10,11 @@
function seeking(e)
{
+ video.removeEventListener('seeking', seeking);
consoleWrite("seeking " + e.target.currentTime.toFixed(2));
doNextSeek(e.target);
+ doNextSeek(e.target);
}
function seeked(e)

Powered by Google App Engine
This is Rietveld 408576698