nDmitry / grunt-autoprefixer

Parse CSS and add vendor-prefixed CSS properties using the Can I Use database. Based on Autoprefixer.
MIT License
795 stars 60 forks source link

Incorrect output when multiple transition properties are used #123

Open jarektomanek opened 8 years ago

jarektomanek commented 8 years ago

Source CSS:

.example {
    transition: filter 1s, transform 2s;
}

Output:

.example {
    transition: -webkit-filter 1s, -webkit-transform 2s, filter 1s, -webkit-transform 2s;
}

Issue: "-webkit-transform 2s" is listed twice, while "transform 2s" is not listed at all.

Config: browsers: ['last 2 versions'] grunt-autoprefixer version: 3.0.4