overflow-img-border-radius.html (585B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>Verifies overflow:visible doesn't clip using border-radius</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-ref.html"> 7 <style> 8 .default { 9 width: 25px; 10 height: 50px; 11 object-fit: none; 12 overflow: visible; 13 border-radius: 50%; 14 object-position: 0% 0%; 15 } 16 </style> 17 <body> 18 <img class=default src="../css-images/support/exif-orientation-6-ru.jpg"></img> 19 </body>