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>
31 lines
764 B
HTML
31 lines
764 B
HTML
<!DOCTYPE html>
|
|
<title>flex base size and stretched items</title>
|
|
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
|
|
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#definite-sizes" title="bullet #1">
|
|
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
|
|
<meta name="assert" content="Item's stretched size is used for laying out descendants when determining flex base size." />
|
|
<style>
|
|
x-flexbox {
|
|
display: flex;
|
|
height: 100px;
|
|
}
|
|
|
|
x-item {
|
|
background: green;
|
|
writing-mode: vertical-lr;
|
|
}
|
|
|
|
x-item > div {
|
|
padding-right: 70%;
|
|
width: 30px;
|
|
}
|
|
</style>
|
|
|
|
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
|
|
|
<x-flexbox>
|
|
<x-item>
|
|
<div></div>
|
|
</x-item>
|
|
</x-flexbox>
|