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

Unified Diff: LayoutTests/media/track/track-cue-rendering-after-controls-removed.html

Issue 1018593004: Implement <video controls> dodging for text track layout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ready for review Created 5 years, 9 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/track/track-cue-rendering-after-controls-removed.html
diff --git a/LayoutTests/media/track/track-webvtt-two-cue-layout-after-first-end.html b/LayoutTests/media/track/track-cue-rendering-after-controls-removed.html
similarity index 59%
copy from LayoutTests/media/track/track-webvtt-two-cue-layout-after-first-end.html
copy to LayoutTests/media/track/track-cue-rendering-after-controls-removed.html
index 6cfb91990272af772c58adfc01560bbe092f652f..c5d16a528bbe4592d93bff145eded7f6b0ed580e 100644
--- a/LayoutTests/media/track/track-webvtt-two-cue-layout-after-first-end.html
+++ b/LayoutTests/media/track/track-cue-rendering-after-controls-removed.html
@@ -1,6 +1,11 @@
<!DOCTYPE html>
-<title>WebVTT two-cue layout after the first cue has ended</title>
-<video style="border:1px solid gray">
+<title>Text track cue layout after controls are removed</title>
+<style>
+::cue {
+ font-size: 50px;
+}
+</style>
+<video controls style="border:1px solid gray">
<source src="opera/track/webvtt/rendering/reftest/media/white.webm" type="video/webm">
<source src="opera/track/webvtt/rendering/reftest/media/white.mp4" type="video/mp4">
</video>
@@ -9,18 +14,17 @@
// cue layout is done, so make no attempt to work without testRunner.
testRunner.waitUntilDone();
-// Add two cues, where the first cue ends before the second.
+// Add a cue that will overlap with the video controls.
var video = document.querySelector("video");
var track = video.addTextTrack("captions");
-track.addCue(new VTTCue(0, 1, "cue 1"));
-track.addCue(new VTTCue(0, 3, "cue 2"));
+track.addCue(new VTTCue(0, 1, "text"));
track.mode = "showing";
video.onloadeddata = function() {
testRunner.displayAsyncThen(function() {
- // Seek past the end of the first cue. The second cue should not move.
- video.currentTime = 2;
- video.onseeked = function() { testRunner.notifyDone(); };
+ // Remove the controls. The cue should not move.
+ video.controls = false;
+ testRunner.notifyDone();
});
};
</script>

Powered by Google App Engine
This is Rietveld 408576698