Are CSS prefixed keyframes stackable as long as they don't include any prefixed specific attributes in them?
Common
@-webkit-keyframes myAnimation{
to{ opacity:0; }
}
@-moz-keyframes myAnimation{
to{ opacity:0; }
}
@keyframes myAnimation{
to{ opacity:0; }
}
Stacked
@-webkit-keyframes myAnimation, @-moz-keyframes myAnimation, @keyframes myAnimation{
to{ opacity:0; }
}