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

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

Issue 2697453005: Import wpt@758b3b4cfa805067f36121333ba031e583d3a62c (Closed)
Patch Set: Add -expected.txt files. 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
(Empty)
1 <!DOCTYPE html>
2 <title>Reference for WebVTT rendering, basic</title>
3 <style>
4 html { overflow:hidden }
5 body { margin:0 }
6 .video {
7 display: inline-block;
8 width: 1280px;
9 height: 720px;
10 position: relative
11 }
12 .cue {
13 position: absolute;
14 bottom: 0;
15 left: 0;
16 right: 0;
17 text-align: center
18 }
19 .cue > span {
20 font-family: Ahem, sans-serif;
21 background: rgba(0,0,0,0.8);
22 color: green;
23 font-size: 36px;
24 }
25 </style>
26 <div class="video"><span class="cue"><span>This is a test subtitle</span></span> </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698