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

Unified Diff: LayoutTests/media/track/opera/interfaces/TextTrackCueList/length.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/opera/interfaces/TextTrackCueList/length.html
diff --git a/LayoutTests/media/track/opera/interfaces/TextTrackCueList/length.html b/LayoutTests/media/track/opera/interfaces/TextTrackCueList/length.html
index f389b2254c3577c644c44a9077da042cb27bbe2f..3281576a1b70e196e2074b604b60d4f7f4127a5b 100644
--- a/LayoutTests/media/track/opera/interfaces/TextTrackCueList/length.html
+++ b/LayoutTests/media/track/opera/interfaces/TextTrackCueList/length.html
@@ -12,7 +12,7 @@ setup(function(){
test(function(){
var cues = t1.cues;
assert_equals(cues.length, 0);
- var c1 = new TextTrackCue(0, 1, 'text1');
+ var c1 = new VTTCue(0, 1, 'text1');
t1.addCue(c1);
assert_equals(cues.length, 1);
t1.removeCue(c1);

Powered by Google App Engine
This is Rietveld 408576698