What version of CssMin are you using (source and/or build)?
3.0.1
What was the input stylesheet and/or configuration options?
@keyframes rotateThis {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
using CssWhitesmithsFormatter or CssOtbsFormatter
and enabling ConvertLevel3AtKeyframes
What is the expected result?
@keyframes, @-moz-keyframes and @-webkit-keyframes sections to be included in
the output
And what is the actual result and/or error message?
@keyframes section is repeated three times
Please provide any additional information below.
CssOtbsFormatter.php line 51 and CssWhitesmithsFormatter.php line 52 both hardcode "@keyframes".
Changing this to "@".$token->AtRuleName returns the expected result.
Original issue reported on code.google.com by l...@lukeblaney.co.uk on 11 Nov 2011 at 11:22
Original issue reported on code.google.com by
l...@lukeblaney.co.uk
on 11 Nov 2011 at 11:22