summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-face/local-styled-1.html
blob: 155fce87061080488366bae7f9f140be0d6da882 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
@font-face {
  font-family: test;
  src: local(Nimbus Sans L), local(NimbusSansL-Regu),
       local(Helvetica), local(Bitstream Vera Sans),
       local(Arial), local(Liberation Sans), local(SwissA),
       local(Fira Sans OT), local(Fira Sans),
       local(Droid Sans), local(Roboto);
}
@font-face {
  font-family: test;
  font-style: italic;
  src: local(Nimbus Sans L), local(NimbusSansL-Regu),
       local(Helvetica), local(Bitstream Vera Sans),
       local(Arial), local(Liberation Sans), local(SwissA),
       local(Fira Sans OT), local(Fira Sans),
       local(Droid Sans), local(Roboto);
}
@font-face {
  font-family: test;
  font-weight: bold;
  src: local(Nimbus Sans L), local(NimbusSansL-Regu),
       local(Helvetica), local(Bitstream Vera Sans),
       local(Arial), local(Liberation Sans), local(SwissA),
       local(Fira Sans OT), local(Fira Sans),
       local(Droid Sans), local(Roboto);
}
div {
  font-family: test, serif;
  margin: 10px;
}
</style>
</head>
<body>
<div style="font-family:serif">
This serif font should NOT be used below.
</div>
<hr>
<div>
These three lines should all use the same font face.
</div>
<div>
<b>This line should NOT be bold.</b>
</div>
<div>
<i>This line should NOT be italic.</i>
</div>
</body>
</html>