summaryrefslogtreecommitdiff
path: root/scss/tests/files/bugs/extend-common-prefix-complex.scss
blob: f2df67792ac2fe228ee047e082b155dc60a7daef (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
@option style:legacy;

#one #two #three a {
    key: value;
}
#one #two #three b {
    @extend a;
}


#one #three c {
    key: value;
}
#one #two #three d {
    @extend c;
}


#one #two #three e {
    key: value;
}
#one #three f {
    @extend e;
}


#one.x #two.y #three.z g {
    key: value;
}
#one #two #three h {
    @extend g;
}


#one #two #three i {
    key: value;
}
#one.x #two.y #three.z j {
    @extend i;
}


#one #two k {
    key: value;
}
#two #three l {
    @extend k;
}


#two #three m {
    key: value;
}
#one #two n {
    @extend m;
}


#one #two #three o {
    key: value;
}
#one #two #three #four p {
    @extend o;
}


#one #two #three #four q {
    key: value;
}
#one #two #three r {
    @extend q;
}


#one #two #four s {
    key: value;
}
#one #three #four t {
    @extend s;
}


#one #three #five u {
    key: value;
}
#two #three #four v {
    @extend u;
}


#one #two #four #five w {
    key: value;
}
#one #three #four #five x {
    @extend w;
}


// DEVIATION from ruby sass
one two one three one four one y {
    key: value;
}
five one three one six z {
    @extend y;
}


// DEVIATION from ruby sass
five one three one six aa {
    key: value;
}
one two one three one four one bb {
    @extend aa;
}