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
16 lines
425 B
HTML
16 lines
425 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Verifies overflow applies to img elements</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-overflow/#propdef-overflow">
|
|
<link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org">
|
|
<style>
|
|
img {
|
|
position: relative;
|
|
top: 50px;
|
|
left: 25px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<img src="../css-images/support/exif-orientation-6-ru.jpg"></img>
|
|
</body>
|
|
|