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

Unified Diff: LayoutTests/media/track/opera/interfaces/VTTCue/text.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/text.html
diff --git a/LayoutTests/media/track/opera/interfaces/TextTrackCue/text.html b/LayoutTests/media/track/opera/interfaces/VTTCue/text.html
similarity index 92%
rename from LayoutTests/media/track/opera/interfaces/TextTrackCue/text.html
rename to LayoutTests/media/track/opera/interfaces/VTTCue/text.html
index 7c7da8b7357ae1298cc65579fd10a7f7d08c9c39..d2fb1a9231c3e9745c34cf4bac9d9df4546518e4 100644
--- a/LayoutTests/media/track/opera/interfaces/TextTrackCue/text.html
+++ b/LayoutTests/media/track/opera/interfaces/VTTCue/text.html
@@ -1,5 +1,5 @@
<!doctype html>
-<title>TextTrackCue.text</title>
+<title>VTTCue.text</title>
<script src=../../../../../resources/testharness.js></script>
<script src=../../../../../resources/testharnessreport.js></script>
<div id=log></div>
@@ -10,7 +10,7 @@ setup(function(){
document.body.appendChild(video);
});
test(function(){
- var c1 = new TextTrackCue(0, 1, 'text1\r\n\n\u0000');
+ var c1 = new VTTCue(0, 1, 'text1\r\n\n\u0000');
assert_equals(c1.text, 'text1\r\n\n\u0000');
c1.text = c1.text;
assert_equals(c1.text, 'text1\r\n\n\u0000');

Powered by Google App Engine
This is Rietveld 408576698