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>
15 lines
583 B
HTML
15 lines
583 B
HTML
<!DOCTYPE html>
|
|
<title>'border-image-repeat' with 'space' and 'round'</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#border-image-repeat">
|
|
<link rel="match" href="reference/border-image-repeat-005-ref.html">
|
|
<style>
|
|
#target {
|
|
width: 255px;
|
|
height: 80px;
|
|
border: 10px solid red;
|
|
border-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><rect width='100' height='100' fill='green'/></svg>") 0 fill / 0px space round;
|
|
}
|
|
</style>
|
|
<p>There should be two green rectangles below:</p>
|
|
<div id="target"></div>
|