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>
16 lines
782 B
HTML
16 lines
782 B
HTML
<!doctype HTML>
|
|
<title>Background-attachment: fixed should be positioned relative to the view and should extend to cover the entire canvas in the presence of scroll backgrounds</title>
|
|
<link rel="author" title="Philip Rogers" href="mailto:pdr@chromium.org">
|
|
<link rel="help" href="https://www.w3.org/TR/css-backgrounds-3/#root-background">
|
|
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#the-background-attachment">
|
|
<link rel="match" href="background-attachment-margin-root-002-ref.html">
|
|
<style>
|
|
html {
|
|
background: linear-gradient(rgba(0,255,0,0.5), rgba(0,0,255,0.5)), linear-gradient(rgba(0,0,0,1), rgba(0,0,0,1));
|
|
background-attachment: fixed, scroll;
|
|
background-size: 100px 100px, 100px 100px;
|
|
height: 300px;
|
|
margin: 50px;
|
|
}
|
|
</style>
|