Skip to content

Commit 4945cd0

Browse files
committed
Add todo spec test for libsass issue 2349
sass/libsass#2349
1 parent 499d91f commit 4945cd0

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)