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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/not_allowed_properties.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, ::cue(), properties that should not affect the cue</tit le> 3 <title>WebVTT rendering, ::cue(), properties that should not affect the cue</tit le>
4 <link rel="match" href="not_allowed_properties-ref.html"> 4 <link rel="match" href="not_allowed_properties-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 border: 2px solid red; 9 border: 2px solid red;
10 border-radius: 5px; 10 border-radius: 5px;
11 bottom: 300px; 11 bottom: 300px;
12 box-shadow: 5px 5px 5px 5px #123456; 12 box-shadow: 5px 5px 5px 5px #123456;
(...skipping 16 matching lines...) Expand all
29 position: absolute; 29 position: absolute;
30 right: 200px; 30 right: 200px;
31 text-align: left; 31 text-align: left;
32 text-indent: 50px; 32 text-indent: 50px;
33 top: -50px; 33 top: -50px;
34 width: 140px; 34 width: 140px;
35 word-spacing: 50px; 35 word-spacing: 50px;
36 } 36 }
37 </style> 37 </style>
38 <script src="/common/reftest-wait.js"></script> 38 <script src="/common/reftest-wait.js"></script>
39 <video width="1280" height="720" autoplay onplaying="this.onplaying = null; this .pause(); takeScreenshot();"> 39 <video width="320" height="180" autoplay onplaying="this.onplaying = null; this. pause(); takeScreenshot();">
40 <source src="/media/white.webm" type="video/webm"> 40 <source src="/media/white.webm" type="video/webm">
41 <source src="/media/white.mp4" type="video/mp4"> 41 <source src="/media/white.mp4" type="video/mp4">
42 <track src="../../support/test.vtt"> 42 <track src="../../support/test.vtt">
43 <script> 43 <script>
44 document.getElementsByTagName('track')[0].track.mode = 'showing'; 44 document.getElementsByTagName('track')[0].track.mode = 'showing';
45 </script> 45 </script>
46 </video> 46 </video>
47 </html> 47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698