blob: 9d92b95a3592f7d4e11260d154fe43e22bb14ab5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bug 970891</title>
<style type="text/css">
@font-face {
font-family: "test";
src: url(../fonts/markA-nospace.ttf);
}
div {
font-family: test, monospace;
font-size: 16px;
line-height: 32px;
}
span {
font-family: monospace;
}
</style>
</head>
<body>
<div><b>A</b><span> </span><b>A</b><span> </span><i>A</i><span> </span><i>A</i></div>
</body>
</html>
|