Skip to content

Commit

Permalink
Merge pull request #279 from mechanicalduck/master
Browse files Browse the repository at this point in the history
Add specs for issue 947.
  • Loading branch information
xzyfer committed Mar 17, 2015
2 parents e8cf0f8 + e069d86 commit af8c622
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_947/expected.compact.css
@@ -0,0 +1,2 @@
@keyframes test { 10% { color: red; } }

2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_947/expected.compressed.css
@@ -0,0 +1,2 @@
@keyframes test{10%{color:red}}

6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_947/expected.expanded.css
@@ -0,0 +1,6 @@
@keyframes test {
10% {
color: red;
}
}

4 changes: 4 additions & 0 deletions spec/libsass-todo-issues/issue_947/expected_output.css
@@ -0,0 +1,4 @@
@keyframes test {
10% {
color: red; } }

6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_947/input.scss
@@ -0,0 +1,6 @@
@keyframes test {
$var: 10%;
#{$var} {
color: red;
}
}

0 comments on commit af8c622

Please sign in to comment.