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

Unified Diff: LayoutTests/media/track/opera/interfaces/TextTrackCue/track.html

Issue 69993003: Split VTTCue from TextTrackCue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update test 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/TextTrackCue/track.html
diff --git a/LayoutTests/media/track/opera/interfaces/TextTrackCue/track.html b/LayoutTests/media/track/opera/interfaces/TextTrackCue/track.html
index f6f8981b12fd5a0f822679cbab432fee29128e2f..7c82ad8085140538a46797b3511ea71e27b55235 100644
--- a/LayoutTests/media/track/opera/interfaces/TextTrackCue/track.html
+++ b/LayoutTests/media/track/opera/interfaces/TextTrackCue/track.html
@@ -10,7 +10,7 @@ setup(function(){
document.body.appendChild(video);
});
test(function(){
- var c1 = new TextTrackCue(0, 1, 'text1');
+ var c1 = new VTTCue(0, 1, 'text1');
assert_equals(c1.track, null);
t1.addCue(c1);
assert_equals(c1.track, t1);

Powered by Google App Engine
This is Rietveld 408576698