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

Unified Diff: third_party/WebKit/LayoutTests/media/video-seeking-expected.txt

Issue 2103783002: Convert video-seeking*, video-set* and video-single* tests to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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: third_party/WebKit/LayoutTests/media/video-seeking-expected.txt
diff --git a/third_party/WebKit/LayoutTests/media/video-seeking-expected.txt b/third_party/WebKit/LayoutTests/media/video-seeking-expected.txt
deleted file mode 100644
index 94c50ac8836dd54100e3518cfd0e238a66a8eeb4..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/media/video-seeking-expected.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-Test that seeking attribute is true immediately after a seek, goes back to false when seeking completes, and that a 'seeked' event is fired for each seek
-
-EVENT(canplaythrough)
-RUN(video.currentTime = 0.5)
-
-EVENT(seeked)
-
-EXPECTED (video.seeking == 'false') OK
-EXPECTED (video.currentTime == '0.5') OK
-RUN(video.currentTime = 1)
-EXPECTED (video.seeking == 'true') OK
-
-EVENT(seeked)
-
-EXPECTED (video.seeking == 'false') OK
-EXPECTED (video.currentTime == '1') OK
-RUN(video.currentTime = 1.5)
-EXPECTED (video.seeking == 'true') OK
-
-EVENT(seeked)
-
-EXPECTED (video.seeking == 'false') OK
-EXPECTED (video.currentTime == '1.5') OK
-END OF TEST
-

Powered by Google App Engine
This is Rietveld 408576698