Add scripts/import_wpt_reftests.py to sparse-clone the upstream WPT repo and bulk-import qualifying CSS reftests (no JS, no external resources) as known_fail entries. 23 tests already pass and are promoted. The import script is idempotent and exposed via `just import-wpt`. CI now prints the WPT summary (pass=36 known_fail=2877 skip=1) on every run. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
62 lines
1.4 KiB
HTML
62 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<title>CSS Test (Backgrounds): border-radius clipping on overflow:hidden with transforms</title>
|
|
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
|
|
<link rel="author" title="Google" href="http://www.google.com/">
|
|
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1207151">
|
|
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#corner-clipping">
|
|
<link rel="match" href="border-radius-clipping-with-transform-001-ref.html">
|
|
<meta name="assert" content="The content should be clipped correctly, despite the interesting transforms.">
|
|
<meta name="fuzzy" content="maxDifference=0-48; totalPixels=0-6783" />
|
|
<style>
|
|
|
|
#outer {
|
|
border: 10px solid #000;
|
|
border-radius: 60px;
|
|
width: 200px;
|
|
height: 200px;
|
|
overflow: hidden;
|
|
transform: rotate(90deg);
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 10px;
|
|
}
|
|
#inner {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: blue;
|
|
transform: translateZ(0);
|
|
}
|
|
|
|
#coverinner, #coverouter {
|
|
position: absolute;
|
|
border: 4px solid fuchsia;
|
|
filter: grayscale(30%);
|
|
}
|
|
|
|
#coverinner {
|
|
width: 196px;
|
|
height: 196px;
|
|
top: 18px;
|
|
left: 18px;
|
|
border-radius: 52px;
|
|
}
|
|
|
|
#coverouter {
|
|
width: 216px;
|
|
height: 216px;
|
|
top: 8px;
|
|
left: 8px;
|
|
border-radius: 62px;
|
|
}
|
|
|
|
</style>
|
|
|
|
<div id="outer">
|
|
<div id="inner">
|
|
</div>
|
|
</div>
|
|
<div id="coverinner">
|
|
</div>
|
|
<div id="coverouter">
|
|
</div>
|