Fixes #483 - property order in restructuring.
authorJakub Pawlowicz <contact@jakubpawlowicz.com>
Fri, 6 Mar 2015 21:16:07 +0000 (21:16 +0000)
committerJakub Pawlowicz <contact@jakubpawlowicz.com>
Fri, 6 Mar 2015 21:22:37 +0000 (21:22 +0000)
commit1842312de7d8a9bfaf77a13d97a298954ad67b59
tree654f3158fdf93077b2217ff077af0f898b489305
parent997d4d74f4389b12a3af34d925582981defd30a0
Fixes #483 - property order in restructuring.

This:

```css
a{background-size:100%}
p{background:no-repeat;background-size:100%}
```

cannot be restructured into:

```css
a,p{background-size:100%}
p{background:no-repeat}
```
History.md
lib/selectors/optimizers/advanced.js
test/fixtures/big-min.css
test/selectors/optimizer-test.js