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

Unified Diff: third_party/WebKit/LayoutTests/media/track/track-cue-nothing-to-render-expected.txt

Issue 1887943002: Convert track tests from video-test.js to testharness.js based (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address nits Created 4 years, 8 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/track/track-cue-nothing-to-render-expected.txt
diff --git a/third_party/WebKit/LayoutTests/media/track/track-cue-nothing-to-render-expected.txt b/third_party/WebKit/LayoutTests/media/track/track-cue-nothing-to-render-expected.txt
deleted file mode 100644
index 2e8a789be31366d52ba3049a45e4981eb4c1136f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/media/track/track-cue-nothing-to-render-expected.txt
+++ /dev/null
@@ -1,48 +0,0 @@
-Test that cues are rendered and removed.
-
-EVENT(canplaythrough)
-EVENT(seeked)
-EXPECTED (video.currentTime.toFixed(1) == '0.5') OK
-No text track cue with display id '-webkit-media-text-track-display' is currently visible
-
-RUN(video.currentTime = 1.5)
-EVENT(seeked)
-EXPECTED (video.currentTime.toFixed(1) == '1.5') OK
-EXPECTED (testTrack.track.activeCues[0].text == 'Lorem ipsum dolor sit amet,') OK
-EXPECTED (textTrackDisplayElement(video, 'display').innerText == 'Lorem ipsum dolor sit amet,') OK
-
-RUN(video.currentTime = 2.5)
-EVENT(seeked)
-EXPECTED (video.currentTime.toFixed(1) == '2.5') OK
-No text track cue with display id '-webkit-media-text-track-display' is currently visible
-
-RUN(video.currentTime = 3.3)
-EVENT(seeked)
-EXPECTED (video.currentTime.toFixed(1) == '3.3') OK
-EXPECTED (testTrack.track.activeCues[0].text == 'consectetuer adipiscing elit,') OK
-EXPECTED (textTrackDisplayElement(video, 'display').innerText == 'consectetuer adipiscing elit,') OK
-
-RUN(video.currentTime = 0.6)
-EVENT(seeked)
-EXPECTED (video.currentTime.toFixed(1) == '0.6') OK
-No text track cue with display id '-webkit-media-text-track-display' is currently visible
-
-RUN(video.currentTime = 5.9)
-EVENT(seeked)
-EXPECTED (video.currentTime.toFixed(1) == '5.9') OK
-EXPECTED (testTrack.track.activeCues[0].text == 'sed diam nonummy nibh euismod tincidunt') OK
-EXPECTED (textTrackDisplayElement(video, 'display').innerText == 'sed diam nonummy nibh euismod tincidunt') OK
-
-RUN(video.currentTime = 4.4)
-EVENT(seeked)
-EXPECTED (video.currentTime.toFixed(1) == '4.4') OK
-No text track cue with display id '-webkit-media-text-track-display' is currently visible
-
-RUN(video.currentTime = 7.9)
-EVENT(seeked)
-EXPECTED (video.currentTime.toFixed(1) == '7.9') OK
-EXPECTED (testTrack.track.activeCues[0].text == 'ut laoreet dolore magna aliquam erat volutpat.') OK
-EXPECTED (textTrackDisplayElement(video, 'display').innerText == 'ut laoreet dolore magna aliquam erat volutpat.') OK
-
-END OF TEST
-

Powered by Google App Engine
This is Rietveld 408576698