OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <title>TextTrackCue.text</title> | 2 <title>VTTCue.text</title> |
3 <script src=../../../../../resources/testharness.js></script> | 3 <script src=../../../../../resources/testharness.js></script> |
4 <script src=../../../../../resources/testharnessreport.js></script> | 4 <script src=../../../../../resources/testharnessreport.js></script> |
5 <div id=log></div> | 5 <div id=log></div> |
6 <script> | 6 <script> |
7 setup(function(){ | 7 setup(function(){ |
8 window.video = document.createElement('video'); | 8 window.video = document.createElement('video'); |
9 window.t1 = video.addTextTrack('subtitles'); | 9 window.t1 = video.addTextTrack('subtitles'); |
10 document.body.appendChild(video); | 10 document.body.appendChild(video); |
11 }); | 11 }); |
12 test(function(){ | 12 test(function(){ |
13 var c1 = new TextTrackCue(0, 1, 'text1\r\n\n\u0000'); | 13 var c1 = new VTTCue(0, 1, 'text1\r\n\n\u0000'); |
14 assert_equals(c1.text, 'text1\r\n\n\u0000'); | 14 assert_equals(c1.text, 'text1\r\n\n\u0000'); |
15 c1.text = c1.text; | 15 c1.text = c1.text; |
16 assert_equals(c1.text, 'text1\r\n\n\u0000'); | 16 assert_equals(c1.text, 'text1\r\n\n\u0000'); |
17 c1.text = null; | 17 c1.text = null; |
18 assert_equals(c1.text, 'null'); | 18 assert_equals(c1.text, 'null'); |
19 }, document.title+', script-created cue'); | 19 }, document.title+', script-created cue'); |
20 | 20 |
21 var t_parsed = async_test(document.title+', parsed cue'); | 21 var t_parsed = async_test(document.title+', parsed cue'); |
22 t_parsed.step(function(){ | 22 t_parsed.step(function(){ |
23 var t = document.createElement('track'); | 23 var t = document.createElement('track'); |
24 t.onload = this.step_func(function(){ | 24 t.onload = this.step_func(function(){ |
25 var c = t.track.cues; | 25 var c = t.track.cues; |
26 assert_equals(c[0].text, ''); | 26 assert_equals(c[0].text, ''); |
27 assert_equals(c[1].text, 'test'); | 27 assert_equals(c[1].text, 'test'); |
28 this.done(); | 28 this.done(); |
29 }); | 29 }); |
30 t.src = 'data:text/vtt,'+encodeURIComponent('WEBVTT\n\n00:00:00.000 --> 00:0
0:00.001\n'+ | 30 t.src = 'data:text/vtt,'+encodeURIComponent('WEBVTT\n\n00:00:00.000 --> 00:0
0:00.001\n'+ |
31 '\n\nfoobar\n00:00:00.000
--> 00:00:00.001\ntest'); | 31 '\n\nfoobar\n00:00:00.000
--> 00:00:00.001\ntest'); |
32 t.track.mode = 'showing'; | 32 t.track.mode = 'showing'; |
33 video.appendChild(t); | 33 video.appendChild(t); |
34 }); | 34 }); |
35 </script> | 35 </script> |
OLD | NEW |