summaryrefslogtreecommitdiff
path: root/test/data/parse2/tests1.dat
blob: c1bfe6eb49308b064e47282eb603a4a562f760c4 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#data
* { }
#errors
#expected
| *
#reset

#data
* { color: #ff0000 }
#errors
#expected
| *
|  color: #ff000000
#reset

#data
* { color: inherit }
#errors
#expected
| *
|  color: inherit
#reset

#data
* { cursor: inherit }
#errors
#expected
| *
|  cursor: inherit
#reset

#data
* { cursor: text inherit }
#errors
#expected
| *
#reset

#data
* { cursor: inherit auto }
#errors
#expected
| *
#reset

#data
* { background-image: url("foo.png"); color: inherit }
#errors
#expected
| *
|  background-image: url('foo.png')
|  color: inherit
#reset

#data
* { display: block; display: table-cell; }
#errors
#expected
| *
|  display: block
|  display: table-cell
#reset

#data
* { cursor: url("foo.png"), url("bar.gif"), pointer; }
#errors
#expected
| *
|  cursor: url('foo.png'), url('bar.gif'), pointer
#reset