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

Side by Side Diff: LayoutTests/fast/css/object-fit-video-poster.html

Issue 22482004: Add support for the object-fit CSS property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Oops, sorry! Forgot to update UseCounter.cpp Created 7 years, 4 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
3 <html>
4 <head>
5 <title>object-fit on video poster</title>
6 <style type="text/css">
7 img, embed, object, input, canvas, video {
8 width: 72px;
9 height: 72px;
10 margin: 2px 10px;
11 border: 1px solid black;
12 background-color: gray;
13 }
14
15 .group { object-fit: contain; }
16 .group > *:nth-child(1) { object-fit: fill; }
17 .group > *:nth-child(2) { object-fit: contain; }
18 .group > *:nth-child(3) { object-fit: cover; }
19 .group > *:nth-child(4) { object-fit: none; }
20 .group > *:nth-child(5) { object-fit: scale-down; }
21 .group > *:nth-child(6) { object-fit: inherit; }
22 .group > *:nth-child(7) { }
23 </style>
24 </head>
25 <body>
26
27 <div class="group">
28 <video poster="resources/circles-landscape.png"></video>
29 <video poster="resources/circles-landscape.png"></video>
30 <video poster="resources/circles-landscape.png"></video>
31 <video poster="resources/circles-landscape.png"></video>
32 <video poster="resources/circles-landscape.png"></video>
33 <video poster="resources/circles-landscape.png"></video>
34 <video poster="resources/circles-landscape.png"></video>
35 </div>
36
37 </body>
38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698