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>
24 lines
721 B
HTML
24 lines
721 B
HTML
<!doctype html>
|
|
<title>border-image w/ border radius</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#border-images">
|
|
<link rel="help" href="https://issues.chromium.org/378404999">
|
|
<link rel="match" href="reference/ref-filled-green-100px-square.xht">
|
|
<style>
|
|
#target {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: conic-gradient(rgba(255, 0, 0, 0.5) 0 0), conic-gradient(red 0 0);
|
|
border-radius: 40px;
|
|
border-image: conic-gradient(green 0 0) 1 fill / 10px;
|
|
}
|
|
#back {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: red;
|
|
}
|
|
</style>
|
|
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
|
<div id="back">
|
|
<div id="target"></div>
|
|
</div>
|