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>
21 lines
824 B
HTML
21 lines
824 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Containing block for fixed positioning</title>
|
|
<link rel="author" title="Bert Bos" href="http://www.w3.org/People/Bos/">
|
|
<link rel="reviewer" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#containing-block-details">
|
|
<link rel="match" href="abspos-containing-block-001-ref.xht" >
|
|
|
|
<style type="text/css">
|
|
body { background: red; margin: 100px 100px; }
|
|
div { background: white; color: green; position: fixed; top: 0; right: 0; bottom: 0; left: 0; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
Test passes if there is <strong>no red</strong>.
|
|
</div>
|
|
</body>
|
|
</html>
|