summaryrefslogtreecommitdiff
path: root/tests/css/parser/enum.css
blob: 8416e93bf05bac281fe8fcf54081c5c254cf39e2 (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
a {
  enum-property: in;
}

b {
  enum-property: none;
}

c {
  enum-property: 2;
}

d {
  enum-property: "in";
}

e {
  enum-property: non-existing;
}

f {
  enum-property: "non-existing";
}

g {
  enum-property: 34;
}

h {
  enum-property: 12e;
}