searchturbine / phpwee-php-minifier

Open-source (BSD) PHP inline minifier functions for HTML, XHTML, HTML5, CSS 1-3 and Javascript. http://searchturbine.com/php/phpwee
Other
79 stars 46 forks source link

The o-keyframes breaks up all the code #3

Open artur99 opened 9 years ago

artur99 commented 9 years ago

This is the css code to be minified: @-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}

After minification, it will look like this:

@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}

So one } is gone, and all the css file gets broken...

Hope you'll post a new update soon... Thank you!