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>
54 lines
615 B
HTML
54 lines
615 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head><title>CSS Test: Change the value of 'order' property</title>
|
|
<link rel="author" title="KeynesQu" href="mailto:keynesqu@sohu.com" />
|
|
|
|
<style>
|
|
|
|
.box {
|
|
margin:0 auto;
|
|
background:#CCC;
|
|
border-radius:5px;
|
|
width:600px;
|
|
}
|
|
|
|
.box div {
|
|
margin:0;
|
|
width:200px;
|
|
float:left;
|
|
text-align:center;
|
|
}
|
|
|
|
.box .red {
|
|
background:#F00;
|
|
}
|
|
.box .blue {
|
|
background:#00F;
|
|
}
|
|
.box .black {
|
|
color:#FFF;
|
|
background:#000;
|
|
}
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<!-- FLEX CONTAINER -->
|
|
<div class="box">
|
|
<div class="blue">B</div>
|
|
<div class="red">A</div>
|
|
<div class="black">C</div>
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|