This is really more of an issue of how to correctly handle vendor-specific rendering problems, but I'm logging this issue so you're aware of this effect.
When using different vendor-spefic selectors, I can easily specify CSS attributes for different rendering engines:
-webkit-transform: rotate(15deg) rotateX(0); /* Force Chrome to render as 3D, enabling antialias */
-moz-transform: rotate(15deg);
-ms-transform: rotate(15deg);
-o-transform: rotate(15deg);
transform: rotate(15deg);
Using prefixfree, however, writing something like this:
-webkit-transform: rotate(15deg) rotateX(0);
transform: rotate(15deg);
...turns the resulting CSS on Chrome into:
-webkit-transform: rotate(15deg) rotateX(0);
-webkit-transform: rotate(15deg);
This negates the vendor-specific attribute spec and reverts it back to a non-antialiased view.
Now, I know that this could be solved by simply applying a Modernizr-like class name for specific browsers (and platforms, like IE), but the alternative would be to assign vendor-specific attributes a higher priority than unprefix ones, eg. if the rule exists prefixed in addition to the unprefixed one in source, do not transform the unprefixed one. This enables the override which would fix this issue.
Again, not sure if this is something that should be handled by prefixfree or not, just putting it out there.
This is really more of an issue of how to correctly handle vendor-specific rendering problems, but I'm logging this issue so you're aware of this effect.
When using different vendor-spefic selectors, I can easily specify CSS attributes for different rendering engines:
Using prefixfree, however, writing something like this:
...turns the resulting CSS on Chrome into:
This negates the vendor-specific attribute spec and reverts it back to a non-antialiased view.
Now, I know that this could be solved by simply applying a Modernizr-like class name for specific browsers (and platforms, like IE), but the alternative would be to assign vendor-specific attributes a higher priority than unprefix ones, eg. if the rule exists prefixed in addition to the unprefixed one in source, do not transform the unprefixed one. This enables the override which would fix this issue.
Again, not sure if this is something that should be handled by prefixfree or not, just putting it out there.