Fixes #582 - overriding with prefixed values.
authorJakub Pawlowicz <contact@jakubpawlowicz.com>
Wed, 27 May 2015 20:52:55 +0000 (21:52 +0100)
committerJakub Pawlowicz <contact@jakubpawlowicz.com>
Wed, 27 May 2015 20:52:55 +0000 (21:52 +0100)
commitd21f1e0808dfc1a658f745cad93e8b74466ffe73
tree67ff262bb124ac23b16435d43d6720db21da22f2
parent475c39c9bf9993b0982e47e682dda774493636ac
Fixes #582 - overriding with prefixed values.

When overriding a longhand property with a vendor-prefixed shorthand
make sure not to loose the former, e.g.

```css
a {
  background-color: red;
  display: block;
  background: -ms-linear-gradient(...);
}
```
History.md
lib/properties/override-compactor.js
lib/properties/vendor-prefixes.js [new file with mode: 0644]
test/properties/override-compacting-test.js