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

Unified Diff: LayoutTests/media/track/opera/interfaces/VTTCue/vertical.html

Issue 69993003: Split VTTCue from TextTrackCue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
old mode 100755
new mode 100644
similarity index 95%
rename from LayoutTests/media/track/opera/interfaces/TextTrackCue/vertical.html
rename to LayoutTests/media/track/opera/interfaces/VTTCue/vertical.html
index ce5d1a63312faa57d15a27d5b439d75dc17894c1..0300656654b50e29e02eb90089b6321e7d4a478c
--- 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