till / cssmin

Automatically exported from code.google.com/p/cssmin
0 stars 0 forks source link

ConvertLevel3AtKeyframes doesn't support @-o-keyframes properties #63

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What version of CssMin are you using (source and/or build)?
3.0.1

What was the input stylesheet and/or configuration options?
@-o-keyframes progress-bar-stripes {
  from  { background-position: 0 0; }
  to    { background-position: 40px 0; }
}

What is the expected result?
@-o-keyframes "progress-bar-stripes"{from { background-position:0 
0}to{background-position:40px 0}}

And what is the actual result and/or error message?
@-o-keyframes progress-bar-stripes{from { background-position:0 
0}to{background-position:40px 0}

Please provide any additional information below.
Just add Opera support in CssAtKeyframesParserPlugin:parse function
(Start of @keyframes at-rule block (@-o-keyframes))

Original issue reported on code.google.com by escalle....@gmail.com on 5 Dec 2012 at 12:59