Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-fonts/small-caps-letter-spacing-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS test: font-variant:small-caps + letter-spacing + ligatures</title>
<meta name="assert" content="When ligatures such as fi or ffi are decomposed to create small-caps, letter-spacing should apply between the glyphs.">
<link rel="match" href="small-caps-letter-spacing-002-ref.html">
<style>
@font-face {
font-family: test;
src: url("/fonts/Lato-Medium.ttf");
}
.test, .ref {
font: 24px test, sans-serif;
letter-spacing: 1em;
font-variant: small-caps;
}
</style>
<p>Both lines should have the same spacing:</p>
<p class="test">Office files</p>
<p class="ref">Office files</p>