Skip to content

Commit

Permalink
Add todo spec test for libsass issue 2205
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Oct 20, 2016
1 parent 3695c76 commit 36a1929
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(0, 1, 1, 0.3); }
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: .25 .5 .75 .3;
test {
color: rgba($params2...);
}

0 comments on commit 36a1929

Please # to comment.