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

Unified Diff: LayoutTests/media/video-controls-captions-multiple-clicks.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
« no previous file with comments | « LayoutTests/media/video-controls-captions.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/media/video-controls-captions-multiple-clicks.html
diff --git a/LayoutTests/media/video-controls-captions-multiple-clicks.html b/LayoutTests/media/video-controls-captions-multiple-clicks.html
index f898c0634b15e39c323f9a0f87da1cf7658aeb8e..30990c95cb9979b945e57a7f0ecd93eee0588fa7 100644
--- a/LayoutTests/media/video-controls-captions-multiple-clicks.html
+++ b/LayoutTests/media/video-controls-captions-multiple-clicks.html
@@ -16,7 +16,7 @@
track = video.addTextTrack('captions');
for(var i = 0; i < 3; i++) {
- var cue = new TextTrackCue(0, 120, text[i]);
+ var cue = new VTTCue(0, 120, text[i]);
track.addCue(cue);
}
}
« no previous file with comments | « LayoutTests/media/video-controls-captions.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698