mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
40 lines
724 B
HTML
40 lines
724 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: 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> |