fix css keyframes parsing

This commit is contained in:
Alexis Sellier
2011-11-12 13:46:39 +01:00
parent c290c48b3f
commit 62fdf76ddb
3 changed files with 20 additions and 2 deletions

View File

@@ -43,3 +43,14 @@ p::before {
#issue322 {
-webkit-animation: anim2 7s infinite ease-in-out;
}
@-webkit-keyframes frames {
0% {
border: 1px;
}
5.5% {
border: 2px;
}
100% {
border: 3px;
}
}