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>
36 lines
845 B
HTML
36 lines
845 B
HTML
<!DOCTYPE html>
|
|
<link rel="author" title="Martin Robinson" href="mrobinson@igalia.com">
|
|
<link rel="help" href="https://drafts.csswg.org/css2/visuren.html#float-position">
|
|
<link rel="match" href="float-with-absolutely-positioned-child-with-static-inset-ref.html">
|
|
<meta name="assert" content="An absolutely positioned child of a float with a static inset should be positioned the same as a non-positioned child of that float." />
|
|
|
|
<style>
|
|
#float {
|
|
float: right;
|
|
width: 250px;
|
|
}
|
|
|
|
#abs-child {
|
|
background: green;
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
#abs-grandchild {
|
|
background: darkgreen;
|
|
position: absolute;
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<div id="float">
|
|
<div id="abs-child">
|
|
<div id="abs-grandchild"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|