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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_transition_with_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, bold object transition with timestamp, ::cue(b:past) se lector</title> 3 <title>WebVTT rendering, bold object transition with timestamp, ::cue(b:past) se lector</title>
4 <link rel="match" href="bold_transition_with_timestamp-ref.html"> 4 <link rel="match" href="bold_transition_with_timestamp-ref.html">
5 <style> 5 <style>
6 html { overflow:hidden } 6 html { overflow:hidden }
7 body { margin:0 } 7 body { margin:0 }
8 ::cue(b) { 8 ::cue(b) {
9 -o-transition: color 9s steps(2, start); 9 -o-transition: color 9s steps(2, start);
10 transition: color 9s steps(2, start); 10 transition: color 9s steps(2, start);
11 } 11 }
12 ::cue(b:past) { 12 ::cue(b:past) {
13 color: #00ff00; 13 color: #00ff00;
14 } 14 }
15 </style> 15 </style>
16 <script src="/common/reftest-wait.js"></script> 16 <script src="/common/reftest-wait.js"></script>
17 <video width="1280" height="720" autoplay onplaying="this.onplaying = null; take ScreenshotDelayed(200);"> 17 <video width="320" height="180" autoplay onplaying="this.onplaying = null; this. pause(); this.currentTime = 0.2; takeScreenshotDelayed(1000);">
18 <source src="/media/white.webm" type="video/webm"> 18 <source src="/media/white.webm" type="video/webm">
19 <source src="/media/white.mp4" type="video/mp4"> 19 <source src="/media/white.mp4" type="video/mp4">
20 <track src="../../../support/bold_with_timestamp.vtt"> 20 <track src="../../../support/bold_with_timestamp.vtt">
21 <script> 21 <script>
22 document.getElementsByTagName('track')[0].track.mode = 'showing'; 22 document.getElementsByTagName('track')[0].track.mode = 'showing';
23 </script> 23 </script>
24 </video> 24 </video>
25 </html> 25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698