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>
35 lines
813 B
HTML
35 lines
813 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<title>CSS reference: letter-spacing should be trimmed at start of line</title>
|
|
<link rel=author href="mailto:jkew@mozilla.com">
|
|
<style>
|
|
.outer {
|
|
position: relative;
|
|
font: 24px/2 monospace;
|
|
}
|
|
.box {
|
|
display: inline-block;
|
|
width: 2ch;
|
|
height: 1.75em;
|
|
margin: calc(1ch - 2px);
|
|
border: 2px solid black;
|
|
border-radius: 5px;
|
|
}
|
|
.test {
|
|
position: absolute;
|
|
top: .5em;
|
|
left: 1.5ch;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
The numbers should be centered in the boxes:<br>
|
|
<div class=outer>
|
|
<div class=box></div><div class=box></div><div class=box></div><div class=box></div><div class=box></div><div class=box></div>
|
|
<div class=test>1 2 3 4 5 6</div>
|
|
</div>
|
|
</body>
|
|
</html>
|