Skip to content

Commit b3aca65

Browse files
committed
Merge pull request #704 from mgreter/todo-test/issue_1812
Add specs for libsass issue 1812
2 parents c486b43 + eb85f62 commit b3aca65

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@svg-load test url(foo.svg) { fill: red; }
2+
.foo { background: svg-inline(test); }
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@svg-load test url(foo.svg){fill:red}.foo{background:svg-inline(test)}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@svg-load test url(foo.svg) {
2+
fill: red;
3+
}
4+
.foo {
5+
background: svg-inline(test);
6+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
@svg-load test url(foo.svg) {
2+
fill: red; }
3+
.foo {
4+
background: svg-inline(test); }
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@svg-load test url(foo.svg) {
2+
fill: red;
3+
}
4+
5+
.foo {
6+
background: svg-inline(test);
7+
}

0 commit comments

Comments
 (0)