Skip to content

Commit

Permalink
Merge pull request sass#722 from xzyfer/feat/issue-1886
Browse files Browse the repository at this point in the history
Add specs for issue 1886
  • Loading branch information
xzyfer committed Jan 20, 2016
2 parents daff4d6 + 1003071 commit 408ea10
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1886/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
body { background: url(); }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
body{background:url()}
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_1886/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body {
background: url();
}
2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_1886/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
body {
background: url(); }
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_1886/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body {
background: url()
}

0 comments on commit 408ea10

Please sign in to comment.