Skip to content

Commit

Permalink
fix test-case
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Feb 26, 2013
1 parent 8917c79 commit 5555d5f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/fixtures/prefix-value.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ button {
}

@media screen {
transition: transform 1s
button {
transition: transform 1s
}
}
8 changes: 8 additions & 0 deletions test/fixtures/prefix-value.out.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,11 @@ button {
transition: height, transform 2s, width 0.3s linear;
background: green
}

@media screen {
button {
-webkit-transition: -webkit-transform 1s;
-moz-transition: -moz-transform 1s;
transition: transform 1s
}
}

0 comments on commit 5555d5f

Please sign in to comment.