summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1022481-1-ref.html
blob: 256791bb16a57508ef291d07fdfb6c2f55faee7e (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
34
35
36
<!DOCTYPE HTML>
<html>
<head>
<title>Simple generics test</title>
<meta charset="UTF-8">
<style>

body {
  margin: 20px;
}

p {
  margin: 0;
  line-height: 1.2;
  font-size: 25px;
}

</style>

</head>
<body>
<p>default font</p>
<p style="font-family: serif">serif</p>
<p style="font-family: sans-serif">sans-serif</p>
<p style="font-family: monospace">monospace</p>
<p style="font-family: monospace">-moz-fixed</p>
<p style="font-family: serif">unknown, serif</p>
<p style="font-family: sans-serif">unknown, sans-serif</p>
<p style="font-family: monospace">unknown, monospace</p>
<p style="font-family: monospace">unknown, -moz-fixed</p>
<p style="font-family: serif">unknown, serif, monospace</p>
<p style="font-family: sans-serif">unknown, sans-serif, -moz-fixed</p>
<p style="font-family: monospace">unknown, monospace, serif</p>
<p style="font-family: monospace">unknown, -moz-fixed, sans-serif</p>
</body>
</html>