forked from mirrors/gecko-dev
Automatic update from web-platform-tests blink: Enable overflow for image elements. Enable the code-path to apply overflow, overflow-clip-margin and paint containment to image elements similar to other elements. R=pdr@chromium.org, vmpstr@chromium.org Bug: 1321217 Change-Id: I9210728ba4fb82ac8a86a89db77c18ea9aa011ef Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3715462 Auto-Submit: Khushal Sagar <khushalsagar@chromium.org> Reviewed-by: Philip Rogers <pdr@chromium.org> Reviewed-by: Vladimir Levin <vmpstr@chromium.org> Commit-Queue: Khushal Sagar <khushalsagar@chromium.org> Cr-Commit-Position: refs/heads/main@{#1020691} -- wpt-commits: b27d71d8b8f7c97a9c36d1d64bb9934408eddc32 wpt-pr: 34541
19 lines
585 B
HTML
19 lines
585 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Verifies overflow:visible doesn't clip using border-radius</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-overflow/#propdef-overflow">
|
|
<link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org">
|
|
<link rel="match" href="overflow-img-ref.html">
|
|
<style>
|
|
.default {
|
|
width: 25px;
|
|
height: 50px;
|
|
object-fit: none;
|
|
overflow: visible;
|
|
border-radius: 50%;
|
|
object-position: 0% 0%;
|
|
}
|
|
</style>
|
|
<body>
|
|
<img class=default src="../css-images/support/exif-orientation-6-ru.jpg"></img>
|
|
</body>
|