mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
35 lines
625 B
HTML
35 lines
625 B
HTML
<!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: test;
|
|
src: url(../fonts/markA.ttf);
|
|
}
|
|
|
|
body {
|
|
margin: 50px;
|
|
font-size: 12pt;
|
|
font-family: Gill Sans, Futura, sans-serif;
|
|
}
|
|
|
|
p.test1 { font-size: 48pt; font-family: test, Futura, sans-serif; }
|
|
p.test2 { font-size: 48pt; font-family: test, 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> |