mattbasta / crass

A CSS minifier and utility library for JavaScript
http://mattbasta.com/crass
MIT License
102 stars 6 forks source link

Duplicate declarations are not removed after transformation #20

Closed mattbasta closed 10 years ago

mattbasta commented 10 years ago
#my-id .class [attribute] {
  color: #ffffff;
  border-radius: 5px;
  color: #fff;
}

results in

#my-id .class [attribute]{border-radius:5px;color:#fff;color:#fff}

with O1 on.