overflow-img-display-table.html (590B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>Verifies img elements are clipped with display:table</title> 4 <link rel="help" href="https://drafts.csswg.org/css-overflow/#propdef-overflow"> 5 <link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org"> 6 <link rel="match" href="overflow-img-display-table-ref.html"> 7 <style> 8 .default { 9 width: 25px; 10 height: 50px; 11 object-fit: none; 12 object-position: 0% 0%; 13 border-radius: 2px; 14 display: table; 15 } 16 </style> 17 <body> 18 <img class=default src="../css-images/support/exif-orientation-6-ru.jpg"></img> 19 </body>