blob: a429031d6f1efabd75dd674a02506e39064bd0f9 (
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><span style="display:inline-block">m</span></div>
|