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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/navigate_cue_position-1.html

Issue 2695813009: Import wpt@503f5b5f78ec4e87d144f78609f363f0ed0ea8db (Closed)
Patch Set: Skip some tests Created 3 years, 10 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
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <title>WebVTT rendering, cue position after navigation</title> 3 <title>WebVTT rendering, cue position after navigation</title>
4 <style> 4 <style>
5 video { 5 video {
6 outline: solid; 6 outline: solid;
7 width: 320px; 7 width: 320px;
8 height: 240px; 8 height: 240px;
9 } 9 }
10 ::cue { 10 ::cue {
11 font-family: Ahem, sans-serif; 11 font-family: Ahem, sans-serif;
12 font-size: 50px; 12 font-size: 50px;
13 color: green; 13 color: green;
14 } 14 }
15 </style> 15 </style>
16 <video autoplay controls onplaying="this.onplaying = null; 16 <video autoplay controls onplaying="this.onplaying = null;
17 this.pause(); 17 this.pause();
18 this.currentTime = 0; 18 this.currentTime = 0;
19 "> 19 ">
20 <source src="/media/white.webm" type="video/webm"> 20 <source src="/media/white.webm" type="video/webm">
21 <source src="/media/white.mp4" type="video/mp4"> 21 <source src="/media/white.mp4" type="video/mp4">
22 <track src=support/foo.vtt> 22 <track src=support/foo.vtt>
23 </video> 23 <script>
24 document.getElementsByTagName('track')[0].track.mode = 'showing';
25 </script>
26 </video>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698