blob: dfbb3657682b482ebdaac782689da2aa434b08af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<meta charset=utf-8>
<style>
@font-face {
font-family: test;
src: url(../fonts/JuniusX-Regular.woff2);
}
.test {
font: 50px test;
}
</style>
<p>Test passes if the first line has the diacritic right-aligned over the m,
while the second line has it centered:</p>
<div class=test><span style="display:inline-block">m</span></div>
<div class=test>m</div>
|