]> Pileus Git - ~andy/gtk/blob - tests/css/parser/font-family.css
700fc81aa71a76351130f0ce5e3bdbfa801e91e1
[~andy/gtk] / tests / css / parser / font-family.css
1 a {
2   font-family: none;
3 }
4
5 b {
6   font-family: Sans Serif;
7 }
8
9 c {
10   font-family: A Font with a lot of text\2C       spaces        and special characters\2122;
11 }
12
13 d {
14   font-family: "A Font with a lot of text, spaces and special characters™" ;
15 }
16
17 e {
18   font-family: A, Lot, Of, Fonts;
19 }
20
21 f {
22   font-family: "A", "Lot", "Of", "Fonts";
23 }
24
25 g {
26   font-family: "A Lot", Of, "Fonts";
27 }
28
29 /* errors straight from the CSS 2.1 spec */
30
31 cssa {
32   font-family: Red/Black, sans-serif;
33 }
34
35 cssb {
36   font-family: "Lucida" Grande, sans-serif;
37 }
38
39 cssc {
40   font-family: Ahem!, sans-serif;
41 }
42
43 cssd {
44   font-family: test@foo, sans-serif;
45 }
46
47 csse {
48   font-family: #POUND, sans-serif;
49 }
50
51 cssf {
52   font-family: Hawaii 5-0, sans-serif;
53 }
54
55 /* errors */
56
57 ea {
58   font-family: ;
59 }
60
61 eb {
62   font-family: No comma at the end, please, ;
63 }
64
65