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

Unified Diff: LayoutTests/media/track/track-cue-rendering-first-line-box.html

Issue 72543003: Update TextTrackCue tests to use VTTCue where appropriate (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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-first-line-box.html
diff --git a/LayoutTests/media/track/track-cue-rendering-first-line-box.html b/LayoutTests/media/track/track-cue-rendering-first-line-box.html
index a6e0ff8b0cf1fe712bf91434ec9aa3707e97917a..be1090dca32dfd0afff9b0a74f623a6c8eb91580 100644
--- a/LayoutTests/media/track/track-cue-rendering-first-line-box.html
+++ b/LayoutTests/media/track/track-cue-rendering-first-line-box.html
@@ -19,7 +19,7 @@
video.addTextTrack("captions", "regular captions track", "en");
consoleWrite("** Add an empty cue to the track **");
- video.textTracks[0].addCue(new TextTrackCue(0.00, 4.00, ""));
+ video.textTracks[0].addCue(new VTTCue(0.00, 4.00, ""));
consoleWrite("** Play the video and render the cue **");
video.play();

Powered by Google App Engine
This is Rietveld 408576698