blob: 66225cd372fab0dd29120ba74ee5e5f0e50b6dcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!DOCTYPE HTML>
<html>
<head>
<title>kerning sanity checks</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
@font-face {
font-family: LinuxLibertine;
src: url(../fonts/LinLibertine_Re-4.7.5.woff);
}
body {
margin: 5px;
}
div#test, div#test pre {
font-family: Arial, LinuxLibertine, sans-serif;
font-size: 300%;
line-height: 1.1em;
-webkit-font-feature-settings: "kern" on;
font-feature-settings: "kern" on;
}
pre {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="test">
<pre><span>AWAY</span></pre>
</div>
</body>
</html>
|