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>
27 lines
1013 B
HTML
27 lines
1013 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" >
|
|
<meta charset="utf-8">
|
|
<title>text-justify:inter-character and ligatures</title>
|
|
<link rel='author' title='Florian Rivoal' href='https://florian.rivoal.net'>
|
|
<link rel='help' href='https://drafts.csswg.org/css-text-3/#letter-spacing-property'>
|
|
<link rel='match' href='reference/letter-spacing-ligatures-003-ref.html'>
|
|
<meta name=flags content="should">
|
|
<meta name="assert" content="When the effective spacing between two characters is not zero (due to either justification […]), user agents should not apply optional ligatures, but they do need to apply mandatory ones.">
|
|
<style>
|
|
div {
|
|
font-size: 2em;
|
|
width: 12ch;
|
|
}
|
|
.test {
|
|
text-align: justify;
|
|
text-align-last: justify;
|
|
text-justify: inter-character;
|
|
}
|
|
span { float: right; }
|
|
.ref { color: blue; }
|
|
</style>
|
|
<p>Test passes if the black text looks like the blue one.
|
|
<div lang=km class=test>សាហា</div>
|
|
<div lang=km class=ref>សា<span>ហា</span></div>
|
|
|