wassem / cssjanus

Automatically exported from code.google.com/p/cssjanus
Apache License 2.0
0 stars 0 forks source link

border-radius problem #25

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
border-radius: 1px 2px 3px 4px;

defers from:

border: 1px 2px 3px 4px;

and should change into:

border-radius: 2px 1px 4px 3px;

but it changes into:

border-radius: 1px 4px 3px 2px;

Original issue reported on code.google.com by pars...@gmail.com on 27 Dec 2013 at 9:00