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

Unified Diff: LayoutTests/media/track/opera/interfaces/VTTCue/align.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/align.html
diff --git a/LayoutTests/media/track/opera/interfaces/TextTrackCue/align.html b/LayoutTests/media/track/opera/interfaces/VTTCue/align.html
similarity index 95%
rename from LayoutTests/media/track/opera/interfaces/TextTrackCue/align.html
rename to LayoutTests/media/track/opera/interfaces/VTTCue/align.html
index 08447e3bca87c1feb562aafb7490617580620818..b903ac3430e534d0337d9388458b6488c18dba40 100644
--- a/LayoutTests/media/track/opera/interfaces/TextTrackCue/align.html
+++ b/LayoutTests/media/track/opera/interfaces/VTTCue/align.html
@@ -1,5 +1,5 @@
<!doctype html>
-<title>TextTrackCue.align</title>
+<title>VTTCue.align</title>
<script src=../../../../../resources/testharness.js></script>
<script src=../../../../../resources/testharnessreport.js></script>
<div id=log></div>
@@ -7,7 +7,7 @@
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.align, 'middle');
var track = document.createElement('track');
var t = track.track;

Powered by Google App Engine
This is Rietveld 408576698