blob: 0c00694f640f5a833c175dfad7cdf41a5ab92385 (
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
39
40
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test of fonts with funky fullnames</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
@font-face {
font-family: test1;
src: url(../fonts/markA-badfullname.ttf);
}
@font-face {
font-family: test2;
src: url(../fonts/markA-shortfullname.ttf);
}
body {
margin: 50px;
font-size: 12pt;
font-family: Gill Sans, Futura, sans-serif;
}
p.test1 { font-size: 48pt; font-family: test1, Futura, sans-serif; }
p.test2 { font-size: 48pt; font-family: test2, Futura, sans-serif; }
</style>
</head>
<body>
<p>Letter A should <strong>not</strong> appear below:</p>
<p class="test1">A</p>
<p class="test2">A</p>
</body>
</html>
|