Index: third_party/WebKit/LayoutTests/external/wpt/webvtt/webvtt-api-for-browsers/vttcue-interface/line.html |
diff --git a/third_party/WebKit/LayoutTests/external/wpt/webvtt/webvtt-api-for-browsers/vttcue-interface/line.html b/third_party/WebKit/LayoutTests/external/wpt/webvtt/webvtt-api-for-browsers/vttcue-interface/line.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..88e3602469782e6e4c04685235787b115826993f |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/external/wpt/webvtt/webvtt-api-for-browsers/vttcue-interface/line.html |
@@ -0,0 +1,62 @@ |
+<!doctype html> |
+<title>VTTCue.line</title> |
+<script src=/resources/testharness.js></script> |
+<script src=/resources/testharnessreport.js></script> |
+<div id=log></div> |
+<script> |
+test(function(){ |
+ var video = document.createElement('video'); |
+ document.body.appendChild(video); |
+ var c1 = new VTTCue(0, 1, 'text1'); |
+ assert_equals(c1.line, "auto"); |
+ var track = document.createElement('track'); |
+ var t = track.track; |
+ t.addCue(c1); |
+ assert_equals(c1.line, "auto"); |
+ video.appendChild(track); |
+ assert_equals(c1.line, "auto"); |
+ t.mode = 'showing'; |
+ assert_equals(c1.line, "auto"); |
+ var c2 = new VTTCue(0, 1, 'text2'); |
+ var track2 = document.createElement('track'); |
+ var t2 = track2.track; |
+ t2.addCue(c2); |
+ assert_equals(c2.line, "auto"); |
+ video.appendChild(track2); |
+ t2.mode = 'showing'; |
+ assert_equals(c2.line, "auto"); |
+ assert_equals(c1.line, "auto"); |
+ c1.line = -5; |
+ assert_equals(c1.line, -5); |
+ assert_equals(c2.line, "auto"); |
+ c1.line = 0; |
+ c1.snapToLines = false; |
+ assert_equals(c1.line, 0); |
+ assert_equals(c2.line, "auto"); |
+}, document.title+', script-created cue'); |
+ |
+var t_parsed = async_test(document.title+', parsed cue'); |
+t_parsed.step(function(){ |
+ var video = document.createElement('video'); |
+ document.body.appendChild(video); |
+ var t = document.createElement('track'); |
+ t.onload = this.step_func(function(){ |
+ var c1 = t.track.cues[0]; |
+ var c2 = t.track.cues[1]; |
+ var c3 = t.track.cues[2]; |
+ assert_equals(c1.line, "auto"); |
+ assert_equals(c2.line, 0); |
+ assert_equals(c3.line, 0); |
+ |
+ this.done(); |
+ }); |
+ t.onerror = this.step_func(function() { |
+ assert_unreached('got error event'); |
+ }); |
+ t.src = 'data:text/vtt,'+encodeURIComponent('WEBVTT\n\n00:00:00.000 --> 00:00:00.001\ntest\n\n'+ |
+ '00:00:00.000 --> 00:00:00.001 line:0\ntest\n\n'+ |
+ '00:00:00.000 --> 00:00:00.001 line:0%\ntest'); |
+ t.track.mode = 'showing'; |
+ video.appendChild(t); |
+}); |
+</script> |