1
0
Fork 0
firefox/testing/web-platform/tests/css/css-text/text-autospace/text-autospace-ligature-001-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

29 lines
714 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<link rel="help" href="https://drafts.csswg.org/css-text-4/#text-autospace-property">
<style>
@font-face {
font-family: ligature-font;
src: url('/fonts/Lato-Medium-Liga.ttf');
}
#test-container {
font-family: ligature-font;
font-size: 40px;
text-autospace: no-autospace;
}
.spacing-right {
margin-right: 0.125em;
}
.spacing-left {
margin-left: 0.125em;
}
</style>
<div id="test-container">
<div><span class="spacing-left">fi</span></div>
<div>国fi</div>
<div><span class="spacing-right">fi</span></div>
<div><span>fi</span></div>
<div><span class="spacing-left spacing-right">fi</span></div>
<div><span>fi</span></div>
</div>