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>
40 lines
839 B
HTML
40 lines
839 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Flexbox Test: gap - rl rows and columns</title>
|
|
<link rel="author" title="Adam Argyle" href="mailto:argyle@google.com">
|
|
<style>
|
|
body {
|
|
writing-mode: vertical-rl;
|
|
}
|
|
section {
|
|
background-color: green;
|
|
block-size: 100px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: column;
|
|
}
|
|
section > div{
|
|
background-color: grey;
|
|
}
|
|
section > div {
|
|
width: calc(50% - 10px);
|
|
}
|
|
section > div:nth-child(1),
|
|
section > div:nth-child(3) {
|
|
margin-block-end: 20px;
|
|
}
|
|
section > div:nth-child(3),
|
|
section > div:nth-child(4) {
|
|
margin-inline-start: 20px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>Test passes if there are <strong> green lines between boxes</strong>.</p>
|
|
<section>
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
</section>
|
|
</body>
|