| OLD | NEW | 
| (Empty) |  | 
 |   1 <!DOCTYPE html> | 
 |   2  | 
 |   3 <html> | 
 |   4     <head> | 
 |   5         <title>object-position on images with object-fit:none and smaller images
    </title> | 
 |   6         <style type="text/css"> | 
 |   7             img { | 
 |   8                 width: 100px; | 
 |   9                 height: 100px; | 
 |  10                 margin: 2px 10px; | 
 |  11                 border: 1px solid black; | 
 |  12                 padding: 5px; | 
 |  13                 background-color: gray; | 
 |  14             } | 
 |  15  | 
 |  16             .group > * { object-fit: none; } | 
 |  17             .group { object-position: 30px 30px; } | 
 |  18             .group > *:nth-child(1) { object-position: right top; } | 
 |  19             .group > *:nth-child(2) { object-position: left bottom; } | 
 |  20             .group > *:nth-child(3) { object-position: 10px 125%; } | 
 |  21             .group > *:nth-child(4) { object-position: 200%; } | 
 |  22             .group > *:nth-child(5) { object-position: -100%; } | 
 |  23             .group > *:nth-child(6) { object-position: -25% -10px; } | 
 |  24             .group > *:nth-child(7) { object-position: 72px 0px; } | 
 |  25             .group > *:nth-child(8) { object-position: 0px 72px; } | 
 |  26             .group > *:nth-child(9) { object-position: -72px 0px; } | 
 |  27             .group > *:nth-child(10) { object-position: 0px -72px; } | 
 |  28             .group > *:nth-child(11) { object-position: inherit; } | 
 |  29             .group > *:nth-child(12) { } | 
 |  30         </style> | 
 |  31     </head> | 
 |  32     <body> | 
 |  33  | 
 |  34         <div class="group"> | 
 |  35             <img src="resources/circles-landscape-small.png"> | 
 |  36             <img src="resources/circles-landscape-small.png"> | 
 |  37             <img src="resources/circles-landscape-small.png"> | 
 |  38             <img src="resources/circles-landscape-small.png"> | 
 |  39             <img src="resources/circles-landscape-small.png"> | 
 |  40             <img src="resources/circles-landscape-small.png"> | 
 |  41             <img src="resources/circles-landscape-small.png"> | 
 |  42             <img src="resources/circles-landscape-small.png"> | 
 |  43             <img src="resources/circles-landscape-small.png"> | 
 |  44             <img src="resources/circles-landscape-small.png"> | 
 |  45             <img src="resources/circles-landscape-small.png"> | 
 |  46             <img src="resources/circles-landscape-small.png"> | 
 |  47         </div> | 
 |  48  | 
 |  49     </body> | 
 |  50 </html> | 
| OLD | NEW |