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
622 B
HTML
23 lines
622 B
HTML
<!DOCTYPE html>
|
|
<title>Preserved trailing spaces when `text-align: left`</title>
|
|
<link rel="help" href="http://crbug.com/966773">
|
|
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
|
|
<link rel="match" href="reference/trailing-space-align-start-ref.html">
|
|
<style>
|
|
div {
|
|
font-family: monospace;
|
|
font-size: 30px;
|
|
width: 3ch;
|
|
overflow: auto;
|
|
}
|
|
.pre { white-space: pre; }
|
|
.pre-wrap { white-space: pre-wrap; }
|
|
</style>
|
|
<body>
|
|
<div class="pre">0 0 </div>
|
|
<div class="pre">0 0</div>
|
|
<div class="pre-wrap">0 0</div>
|
|
<div class="pre-wrap">0 0 </div>
|
|
<div class="pre-wrap">0 0 0 0 </div>
|
|
</body>
|