Merge mozilla-central to autoland. a=merge CLOSED TREE
[gecko.git] / layout / reftests / font-face / load-badfullname.html
blob0c00694f640f5a833c175dfad7cdf41a5ab92385
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <title>Test of fonts with funky fullnames</title>
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7 <style type="text/css">
9 @font-face {
10 font-family: test1;
11 src: url(../fonts/markA-badfullname.ttf);
14 @font-face {
15 font-family: test2;
16 src: url(../fonts/markA-shortfullname.ttf);
19 body {
20 margin: 50px;
21 font-size: 12pt;
22 font-family: Gill Sans, Futura, sans-serif;
25 p.test1 { font-size: 48pt; font-family: test1, Futura, sans-serif; }
26 p.test2 { font-size: 48pt; font-family: test2, Futura, sans-serif; }
28 </style>
30 </head>
31 <body>
33 <p>Letter A should <strong>not</strong> appear below:</p>
35 <p class="test1">A</p>
37 <p class="test2">A</p>
39 </body>
40 </html>