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

Unified Diff: LayoutTests/media/track/opera/interfaces/TextTrackCue/endTime.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/TextTrackCue/endTime.html
diff --git a/LayoutTests/media/track/opera/interfaces/TextTrackCue/endTime.html b/LayoutTests/media/track/opera/interfaces/TextTrackCue/endTime.html
index b8cd5704e5488cf970b029fbb0fda1551257cfcc..b7174a0cd3e8609d981f7479703336ad62f39538 100644
--- a/LayoutTests/media/track/opera/interfaces/TextTrackCue/endTime.html
+++ b/LayoutTests/media/track/opera/interfaces/TextTrackCue/endTime.html
@@ -10,7 +10,7 @@ setup(function(){
document.body.appendChild(video);
});
test(function(){
- var c1 = new TextTrackCue(-2, -1, 'text1');
+ var c1 = new VTTCue(-2, -1, 'text1');
assert_equals(c1.endTime, -1);
c1.endTime = c1.endTime;
assert_equals(c1.endTime, -1);

Powered by Google App Engine
This is Rietveld 408576698