aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/font_stretch.html
blob: 1d5e1809217169d1c4e9539edd5e6c3688893189 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<style>
body {
    font-size: 36pt;
    font-family: "Helvetica Neue";
    font-weight: bold;
    font-style: normal;
}
#a {
    font-stretch: normal;
}
#b {
    font-stretch: condensed;
}
</style>
</head>
<body>
<div id=a>Felis silvestris catus</div>
<div id=b>Felis silvestris catus</div>
</body>
</html>