Skip to content

Commit

Permalink
Merge pull request #65 from malrase/issue_151
Browse files Browse the repository at this point in the history
Adding test for sass/libsass#151 and pull request sass/libsass#515
  • Loading branch information
HamptonMakes committed Oct 6, 2014
2 parents 6c18a4a + 4674ee0 commit 131604a
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
20 changes: 20 additions & 0 deletions spec/libsass-todo-issues/issue_151/expected_output.css
@@ -0,0 +1,20 @@
div.colors {
background: gray;
background: saturate(red);
background: cyan;
background: 1;
color: #666666;
color: saturate(#369);
color: #cc9966;
color: 1;
}

div.numbers {
filter: grayscale(30%);
filter: saturate(30%);
filter: invert(30%);
-webkit-filter: grayscale(0.3);
-webkit-filter: saturate(0.3);
-webkit-filter: invert(0.3);
}

19 changes: 19 additions & 0 deletions spec/libsass-todo-issues/issue_151/input.scss
@@ -0,0 +1,19 @@
div.colors {
background: grayscale(red);
background: saturate(red);
background: invert(red);
background: alpha(red);
color: grayscale(#369);
color: saturate(#369);
color: invert(#369);
color: alpha(#369);
}

div.numbers {
filter: grayscale(30%);
filter: saturate(30%);
filter: invert(30%);
-webkit-filter: grayscale(0.3);
-webkit-filter: saturate(0.3);
-webkit-filter: invert(0.3);
}

0 comments on commit 131604a

Please sign in to comment.