Skip to content

Commit

Permalink
Added test data to verify that it works gently with keyframes with ve…
Browse files Browse the repository at this point in the history
…ndor prefixes
  • Loading branch information
olavhaugen committed Feb 21, 2018
1 parent 10fd193 commit 9f109ef
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/fixtures/keyframes.css
Expand Up @@ -9,3 +9,14 @@
transform: none;
}
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
transform: translate3d(0, 100%, 0);
}

100% {
opacity: 1;
transform: none;
}
}
11 changes: 11 additions & 0 deletions test/fixtures/keyframes.expected.css
Expand Up @@ -9,3 +9,14 @@
transform: none;
}
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
transform: translate3d(0, 100%, 0);
}

100% {
opacity: 1;
transform: none;
}
}

0 comments on commit 9f109ef

Please sign in to comment.