| Index: LayoutTests/fast/css/object-fit-img.html
|
| diff --git a/LayoutTests/fast/css/object-fit-img.html b/LayoutTests/fast/css/object-fit-img.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..942b541a492d86ea4a2f40c67fa78384aabb89a8
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css/object-fit-img.html
|
| @@ -0,0 +1,38 @@
|
| +<!DOCTYPE html>
|
| +
|
| +<html>
|
| + <head>
|
| + <title>object-fit on images</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">
|
| + <img src="resources/circles-landscape.png">
|
| + <img src="resources/circles-landscape.png">
|
| + <img src="resources/circles-landscape.png">
|
| + <img src="resources/circles-landscape.png">
|
| + <img src="resources/circles-landscape.png">
|
| + <img src="resources/circles-landscape.png">
|
| + <img src="resources/circles-landscape.png">
|
| + </div>
|
| +
|
| + </body>
|
| +</html>
|
|
|