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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/webvtt/webvtt-api-for-browsers/vttcue-interface/line.html

Issue 2711183003: Import wpt@a7e9c2abcf65b78fcf1c246fec6681c74e1bc352 (Closed)
Patch Set: Update test expectations and baselines. Created 3 years, 9 months 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <title>VTTCue.line</title>
3 <script src=/resources/testharness.js></script>
4 <script src=/resources/testharnessreport.js></script>
5 <div id=log></div>
6 <script>
7 test(function(){
8 var video = document.createElement('video');
9 document.body.appendChild(video);
10 var c1 = new VTTCue(0, 1, 'text1');
11 assert_equals(c1.line, "auto");
12 var track = document.createElement('track');
13 var t = track.track;
14 t.addCue(c1);
15 assert_equals(c1.line, "auto");
16 video.appendChild(track);
17 assert_equals(c1.line, "auto");
18 t.mode = 'showing';
19 assert_equals(c1.line, "auto");
20 var c2 = new VTTCue(0, 1, 'text2');
21 var track2 = document.createElement('track');
22 var t2 = track2.track;
23 t2.addCue(c2);
24 assert_equals(c2.line, "auto");
25 video.appendChild(track2);
26 t2.mode = 'showing';
27 assert_equals(c2.line, "auto");
28 assert_equals(c1.line, "auto");
29 c1.line = -5;
30 assert_equals(c1.line, -5);
31 assert_equals(c2.line, "auto");
32 c1.line = 0;
33 c1.snapToLines = false;
34 assert_equals(c1.line, 0);
35 assert_equals(c2.line, "auto");
36 }, document.title+', script-created cue');
37
38 var t_parsed = async_test(document.title+', parsed cue');
39 t_parsed.step(function(){
40 var video = document.createElement('video');
41 document.body.appendChild(video);
42 var t = document.createElement('track');
43 t.onload = this.step_func(function(){
44 var c1 = t.track.cues[0];
45 var c2 = t.track.cues[1];
46 var c3 = t.track.cues[2];
47 assert_equals(c1.line, "auto");
48 assert_equals(c2.line, 0);
49 assert_equals(c3.line, 0);
50
51 this.done();
52 });
53 t.onerror = this.step_func(function() {
54 assert_unreached('got error event');
55 });
56 t.src = 'data:text/vtt,'+encodeURIComponent('WEBVTT\n\n00:00:00.000 --> 00:0 0:00.001\ntest\n\n'+
57 '00:00:00.000 --> 00:00:00.001 l ine:0\ntest\n\n'+
58 '00:00:00.000 --> 00:00:00.001 l ine:0%\ntest');
59 t.track.mode = 'showing';
60 video.appendChild(t);
61 });
62 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698