overflow-img-scroll-replaced.html (639B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>Verifies overflow:scroll on a replaced element clips to content box but doesn't generate scrollbars</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-scroll-replaced-ref.html"> 7 <style> 8 img { 9 padding: 10px; 10 background: grey; 11 object-fit: none; 12 width: 50px; 13 height: 50px; 14 object-position: 0% 0%; 15 overflow: scroll; 16 } 17 </style> 18 <body> 19 <img src="../css-images/support/exif-orientation-6-ru.jpg"></img> 20 </body>