mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
410 B
HTML
24 lines
410 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: dvsm;
|
|
src: url(../fonts/DejaVuSansMono.woff);
|
|
}
|
|
|
|
p {
|
|
font-family: dvsm; /* family with only a single weight */
|
|
}
|
|
|
|
.test {
|
|
color: white; /* hide the text, we're only comparing metrics */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>AbcdefghijklmnopqrstuvwxyZ</p>
|
|
<p>A<span class="test">bcdefghijklmnopqrstuvwxy</span>Z</p>
|
|
</body>
|
|
</html>
|