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

Unified Diff: LayoutTests/media/track/opera/interfaces/TextTrack/removeCue.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/TextTrack/removeCue.html
diff --git a/LayoutTests/media/track/opera/interfaces/TextTrack/removeCue.html b/LayoutTests/media/track/opera/interfaces/TextTrack/removeCue.html
index 0d4c7874e76f139d70acef8ecafb4fcf83073086..7143bd2b1edd01d8e0fcd3a608a2106179e5d29f 100644
--- a/LayoutTests/media/track/opera/interfaces/TextTrack/removeCue.html
+++ b/LayoutTests/media/track/opera/interfaces/TextTrack/removeCue.html
@@ -11,7 +11,7 @@ setup(function(){
test(function() {
var t1 = video.addTextTrack('subtitles');
var t2 = video.addTextTrack('subtitles');
- var c1 = new TextTrackCue(0, 1, 'text1');
+ var c1 = new VTTCue(0, 1, 'text1');
assert_throws("NOT_FOUND_ERR", function() {
t1.removeCue(c1);
}, 'standalone');

Powered by Google App Engine
This is Rietveld 408576698