summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-matching/simple-oblique.html
blob: cb4671f4d85ef5617aa293f6b6b553c6c3e704cd (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
27
28
29
30
31
32
33
<!DOCTYPE HTML>
<html>
<head>
<title>oblique italic equivalence</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  
<style type="text/css">

body {
  margin: 50px;
  font-size: 300%;
}

#sans { font-family: sans-serif; }
#serif { font-family: serif; }
#mono { font-family: monospace; }

p {
  margin: 0;
  font-style: oblique;
  line-height: 1.3em;
}
</style>

</head>
<body>

<p id=sans>UNICORN asteroid</p>
<p id=serif>UNICORN asteroid</p>
<p id=mono>UNICORN asteroid</p>

</body>
</html>