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

Unified Diff: LayoutTests/media/track/opera/interfaces/VTTCue/vertical.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/VTTCue/vertical.html
diff --git a/LayoutTests/media/track/opera/interfaces/TextTrackCue/vertical.html b/LayoutTests/media/track/opera/interfaces/VTTCue/vertical.html
similarity index 95%
rename from LayoutTests/media/track/opera/interfaces/TextTrackCue/vertical.html
rename to LayoutTests/media/track/opera/interfaces/VTTCue/vertical.html
index 87380e37bf1702ee9efb837263747c7a68301148..c39824a562fd0f6444ef474376e798bb4b6ec586 100644
--- a/LayoutTests/media/track/opera/interfaces/TextTrackCue/vertical.html
+++ b/LayoutTests/media/track/opera/interfaces/VTTCue/vertical.html
@@ -1,5 +1,5 @@
<!doctype html>
-<title>TextTrackCue.vertical</title>
+<title>VTTCue.vertical</title>
<script src=../../../../../resources/testharness.js></script>
<script src=../../../../../resources/testharnessreport.js></script>
<div id=log></div>
@@ -12,7 +12,7 @@ setup(function(){
test(function(){
var video = document.createElement('video');
document.body.appendChild(video);
- var c1 = new TextTrackCue(0, 1, 'text1');
+ var c1 = new VTTCue(0, 1, 'text1');
assert_equals(c1.vertical, '');
var track = document.createElement('track');
var t = track.track;

Powered by Google App Engine
This is Rietveld 408576698