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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/9_cues_overlapping_completely_all_cues_have_same_timestamp.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 class="reftest-wait">
3 <title>WebVTT rendering, repositioning of 9 cues that overlap completely and all cues have the same timestamp</title> 3 <title>WebVTT rendering, repositioning of 9 cues that overlap completely and all cues have the same timestamp</title>
4 <link rel="match" href="9_cues_overlapping_completely_all_cues_have_same_timesta mp-ref.html"> 4 <link rel="match" href="9_cues_overlapping_completely_all_cues_have_same_timesta mp-ref.html">
5 <style> 5 <style>
6 html { overflow:hidden } 6 html { overflow:hidden }
7 body { margin:0 } 7 body { margin:0 }
8 ::cue { 8 ::cue {
9 font-family: Ahem, sans-serif; 9 font-family: Ahem, sans-serif;
10 } 10 }
11 ::cue(#cue1) { 11 ::cue(#cue1) {
12 color: #000 12 color: #000
(...skipping 17 matching lines...) Expand all
30 color: #ccc 30 color: #ccc
31 } 31 }
32 ::cue(#cue8) { 32 ::cue(#cue8) {
33 color: #eee 33 color: #eee
34 } 34 }
35 ::cue(#cue9) { 35 ::cue(#cue9) {
36 color: green 36 color: green
37 } 37 }
38 </style> 38 </style>
39 <script src="/common/reftest-wait.js"></script> 39 <script src="/common/reftest-wait.js"></script>
40 <video width="720" height="720" autoplay ontimeupdate="if (this.currentTime >= 1 ) { this.ontimeupdate = null; this.pause(); takeScreenshot(); }"> 40 <video width="180" height="180" autoplay onplaying="this.onplaying = null; this. pause(); this.currentTime = 1; takeScreenshotDelayed(1000);">
41 <source src="/media/white.webm" type="video/webm"> 41 <source src="/media/white.webm" type="video/webm">
42 <source src="/media/white.mp4" type="video/mp4"> 42 <source src="/media/white.mp4" type="video/mp4">
43 <track src="support/9_cues_overlapping_completely_all_cues_have_same_timesta mp.vtt"> 43 <track src="support/9_cues_overlapping_completely_all_cues_have_same_timesta mp.vtt">
44 <script> 44 <script>
45 document.getElementsByTagName('track')[0].track.mode = 'showing'; 45 document.getElementsByTagName('track')[0].track.mode = 'showing';
46 </script> 46 </script>
47 </video> 47 </video>
48 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698