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>
10 lines
500 B
HTML
10 lines
500 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#flex-basis-property">
|
|
<link rel="match" href="reference/auto-height-with-flex-ref.html">
|
|
<meta name="assert" content="This test ensures that a vertical flexbox (with auto height) and a flexitem with flex: 1; will not have 0 set to the flex basis, but to auto instead."/>
|
|
<div style="display: flex; flex-direction: column; border: 1px solid purple;">
|
|
<div>Header</div>
|
|
<div style="flex: 1">Flexible content<br>
|
|
</div>
|
|
</div>
|