Index: LayoutTests/fast/css/object-fit-video-poster.html |
diff --git a/LayoutTests/fast/css/object-fit-video-poster.html b/LayoutTests/fast/css/object-fit-video-poster.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..635eb34fe90391d1666cea3e2301779c322a8c5e |
--- /dev/null |
+++ b/LayoutTests/fast/css/object-fit-video-poster.html |
@@ -0,0 +1,38 @@ |
+<!DOCTYPE html> |
+ |
+<html> |
+ <head> |
+ <title>object-fit on video poster</title> |
+ <style type="text/css"> |
+ img, embed, object, input, canvas, video { |
+ width: 72px; |
+ height: 72px; |
+ margin: 2px 10px; |
+ border: 1px solid black; |
+ background-color: gray; |
+ } |
+ |
+ .group { object-fit: contain; } |
+ .group > *:nth-child(1) { object-fit: fill; } |
+ .group > *:nth-child(2) { object-fit: contain; } |
+ .group > *:nth-child(3) { object-fit: cover; } |
+ .group > *:nth-child(4) { object-fit: none; } |
+ .group > *:nth-child(5) { object-fit: scale-down; } |
+ .group > *:nth-child(6) { object-fit: inherit; } |
+ .group > *:nth-child(7) { } |
+ </style> |
+ </head> |
+ <body> |
+ |
+ <div class="group"> |
+ <video poster="resources/circles-landscape.png"></video> |
+ <video poster="resources/circles-landscape.png"></video> |
+ <video poster="resources/circles-landscape.png"></video> |
+ <video poster="resources/circles-landscape.png"></video> |
+ <video poster="resources/circles-landscape.png"></video> |
+ <video poster="resources/circles-landscape.png"></video> |
+ <video poster="resources/circles-landscape.png"></video> |
+ </div> |
+ |
+ </body> |
+</html> |