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>
23 lines
587 B
HTML
23 lines
587 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>CSS Flexbox Test: Items stretch correctly while content is animating</title>
|
|
<link rel="author" title="Micky Brunetti" href="mailto:micky2be@gmail.com">
|
|
<style>
|
|
@keyframes resize {
|
|
0% {height: 100px;}
|
|
100% {height: 50px;}
|
|
}
|
|
.test {
|
|
height: 100px;
|
|
width: 200px;
|
|
background-color: green;
|
|
animation: resize 500ms infinite alternate;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>The test passes if you keep seeing a green rectangle and no red.</p>
|
|
<div class="test"></div>
|
|
</body>
|
|
</html> |