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

Unified Diff: LayoutTests/media/track/track-disabled-addcue.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-disabled-addcue.html
diff --git a/LayoutTests/media/track/track-disabled-addcue.html b/LayoutTests/media/track/track-disabled-addcue.html
index 2737191fb266472baf590fbe6b1de30b6d8e2f95..da8fffb4286245a454af59260f5e3f7e7d3c000f 100644
--- a/LayoutTests/media/track/track-disabled-addcue.html
+++ b/LayoutTests/media/track/track-disabled-addcue.html
@@ -17,7 +17,7 @@
for (var i = 0; i < 10; ++i) {
var start = i * cueDuration;
var end = start + cueDuration;
- track.addCue(new TextTrackCue(start, end, "Test Cue " + i));
+ track.addCue(new VTTCue(start, end, "Test Cue " + i));
}
consoleWrite("Waiting for 2 cue durations to elapse.");

Powered by Google App Engine
This is Rietveld 408576698