You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.
Using 0.9.0.0-128, the rewrite_css filter messes up transform values for things
like scale, skew, rotate, and translate.
This CSS:
-moz-transform: rotate(7deg);
-webkit-transform: rotate(7deg);
-moz-transform: skew(-25deg);
-webkit-transform: skew(-25deg);
-moz-transform: scale(0.5);
-webkit-transform: scale(0.5);
-moz-transform: translate(3em, 0);
-webkit-transform: translate(3em, 0);
is changed to be this:
-moz-transform:rotate();-webkit-transform:rotate();-moz-transform:skew();-webkit
-transform:skew();-moz-transform:scale();-webkit-transform:scale();-moz-transfor
m:translate();-webkit-transform:translate()
Thanks!
Original issue reported on code.google.com by joe.lencioni on 10 Nov 2010 at 5:28
The text was updated successfully, but these errors were encountered:
You are using the first release of mod_pagespeed. There's been an important
bug-fix release. Please download the new version from
http://code.google.com/speed/page-speed/download.html
That binary distribution avoids this problem by temporarily removing the
"rewrite_css" filter from the Core set.
The particular bug you identified has already been identified and fixed in the
rewrite_css filter, but has not yet made it to a binary release.
Original comment by jmara...@google.com on 10 Nov 2010 at 6:17
Original issue reported on code.google.com by
joe.lencioni
on 10 Nov 2010 at 5:28The text was updated successfully, but these errors were encountered: