summaryrefslogtreecommitdiff
path: root/test/data/parse2/shorthands.dat
blob: 0705f137d259d41d9ef798fceb0c4f6e702610b6 (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
#data
* { margin: 0 0 0 0; }
#errors
#expected
| *
|  margin-top: 0
|  margin-right: 0
|  margin-bottom: 0
|  margin-left: 0
#reset

#data
* { margin: 2em; }
#errors
#expected
| *
|  margin-top: 2em
|  margin-right: 2em
|  margin-bottom: 2em
|  margin-left: 2em
#reset

#data
* { margin: 2em auto; }
#errors
#expected
| *
|  margin-top: 2em
|  margin-right: auto
|  margin-bottom: 2em
|  margin-left: auto
#reset

#data
* { margin: 10% 5px -4em -50%; }
#errors
#expected
| *
|  margin-top: 10%
|  margin-right: 5px
|  margin-bottom: -4em
|  margin-left: -50%
#reset

#data
* { margin: 10% 5px -4em; }
#errors
#expected
| *
|  margin-top: 10%
|  margin-right: 5px
|  margin-bottom: -4em
|  margin-left: 5px
#reset

#data
* { margin: 10% 5px "Hello!" -4em; }
#errors
#expected
| *
#reset