mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
401 B
HTML
22 lines
401 B
HTML
<html>
|
|
<head>
|
|
<title>bug 502795 - letterspace with downloaded font</title>
|
|
</head>
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: test;
|
|
src: url(../fonts/MarkA.ttf);
|
|
}
|
|
p {
|
|
font-family: test;
|
|
font-size: 24pt;
|
|
letter-spacing: 10px;
|
|
}
|
|
</style>
|
|
<!-- with letterspacing, the downloaded font will fail to render
|
|
via coretext due to bug 502795 -->
|
|
<body>
|
|
<p>A</p>
|
|
</body>
|
|
</html>
|