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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/repaint-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, cue should repaint after hiding a coverin g abspos box</title>
3 <style>
4 .video {
5 display: inline-block;
6 width: 320px;
7 height: 240px;
8 position: relative
9 }
10 .cue {
11 position: absolute;
12 bottom: 0;
13 left: 0;
14 right: 0;
15 text-align: center
16 }
17 .cue > span {
18 font-family: sans-serif;
19 background: rgba(0,0,0,0.8);
20 color: green;
21 font-size: 50px;
22 }
23 </style>
24 <p>You should see the word 'PASS' below.</p>
25 <div class="video"><span class="cue"><span>PASS</span></span></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698