Skip to content

Commit 7d22fac

Browse files
committed
Merge pull request #791 from mgreter/todo/issue_1940
Add todo spec test for libsass issue 1940
2 parents 39cdf67 + 7d14fc3 commit 7d22fac

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
foo {
2+
color: red; }
3+
4+
#bar {
5+
color: red; }
6+
7+
foo .baz {
8+
color: red; }
9+
10+
#bar .baz {
11+
color: red; }
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// ----
2+
// libsass (v3.3.2)
3+
// ----
4+
5+
$prefix:(
6+
foo: foo,
7+
bar: #bar
8+
);
9+
10+
#{map-get($prefix, foo)} {
11+
color: red;
12+
}
13+
#{map-get($prefix, bar)} {
14+
color: red;
15+
}
16+
17+
#{map-get($prefix, foo)} .baz {
18+
color: red;
19+
}
20+
#{map-get($prefix, bar)} .baz {
21+
color: red;
22+
}

0 commit comments

Comments
 (0)