forked from mirrors/gecko-dev
Automatic update from web-platform-tests Do not round the clipping region with mixed overflow clip The CSSWG resolved [1] to not apply rounded border clipping when one of overflow-x or overflow-y computes to clip and the other computes to visible (https://drafts.csswg.org/css-overflow/#corner-clipping). This patch updates our implementation to not create the inner border radius clip in this mixed clip/visible scenario. [1] https://github.com/w3c/csswg-drafts/issues/7434 Bug: 1416649 Change-Id: I4d24ac82ecdafba5fa691efb1ce85892c734c717 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5171405 Reviewed-by: David Baron <dbaron@chromium.org> Commit-Queue: Philip Rogers <pdr@chromium.org> Cr-Commit-Position: refs/heads/main@{#1243240} -- wpt-commits: 7e7527ccba8afd472bd49972a4ba0ae0c58208ac wpt-pr: 43858
15 lines
290 B
HTML
15 lines
290 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.box {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: green;
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
|
|
There should be 4 100x100 green squares (no rounded corners) below.<br>
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|