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

Unified Diff: LayoutTests/media/track/track-cue-rendering-mode-changed.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-mode-changed.html
diff --git a/LayoutTests/media/track/track-cue-rendering-mode-changed.html b/LayoutTests/media/track/track-cue-rendering-mode-changed.html
index fe033a40bfe2de465b1ba7e50cec2405d76e67c6..5fc33263fdbcfa7c121ca2cc33300172ab8d1db1 100644
--- a/LayoutTests/media/track/track-cue-rendering-mode-changed.html
+++ b/LayoutTests/media/track/track-cue-rendering-mode-changed.html
@@ -19,11 +19,11 @@
consoleWrite("Add 'Arabic' text track with one cue");
testTrackArabic = video.addTextTrack('captions', 'Arabic', 'ar');
- testTrackArabic.addCue(new TextTrackCue(0.0, 10.0, 'Arabic'));
+ testTrackArabic.addCue(new VTTCue(0.0, 10.0, 'Arabic'));
consoleWrite("Add 'English' text track with one cue");
testTrackEnglish = video.addTextTrack('captions', 'English', 'en');
- testTrackEnglish.addCue(new TextTrackCue(0.0, 10.0, 'English'));
+ testTrackEnglish.addCue(new VTTCue(0.0, 10.0, 'English'));
consoleWrite("");
consoleWrite("Set the mode of the 'Arabic' track to showing");
« no previous file with comments | « LayoutTests/media/track/track-cue-rendering-first-line-box.html ('k') | LayoutTests/media/track/track-disabled-addcue.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698