Skip to content

Commit

Permalink
Merge pull request #952 from mgreter/todo/issue_2205
Browse files Browse the repository at this point in the history
Add todo spec test for libsass issue 2205
  • Loading branch information
mgreter authored Oct 22, 2016
2 parents d354b64 + e25e336 commit 472d122
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_2205/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
test {
color: rgba(255, 255, 255, 0.5); }

test {
color: rgba(10, 250, 130, 0.5); }
9 changes: 9 additions & 0 deletions spec/libsass-todo-issues/issue_2205/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
$params1: #fff .5;
test {
color: rgba($params1...);
}

$params2: 10 250 130 .5;
test {
color: rgba($params2...);
}

0 comments on commit 472d122

Please # to comment.