Skip to content

Commit c8cbeb2

Browse files
authored
Merge pull request #1092 from mgreter/todo/issue_2349
Add todo spec test for libsass issue 2349
2 parents 18b1c80 + 4945cd0 commit c8cbeb2

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.test {
2+
background: url(assets/images/image.png);
3+
background: url(/images/image.png);
4+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
$path1: assets/images; // no errors thrown
2+
$path2: /images; // errors thrown
3+
.test {
4+
background: url(#{$path1}/image.png);
5+
background: url(#{$path2}/image.png);
6+
}

0 commit comments

Comments
 (0)