Open GoogleCodeExporter opened 9 years ago
I've made a rough patch which fixes this test case, but haven't tested it
rigorously.
Original comment by l...@lukeblaney.co.uk
on 11 Nov 2011 at 12:11
Attachments:
Thanks for reporting.
Original comment by joe.scylla
on 16 Nov 2011 at 11:14
I ran into a similar issue. @keyframes should create the following:
`@-moz-keyframes
@-ms-keyframes
@-o-keyframes
@-webkit-keyframes`
And inside these, the only conversion should be from the property that needs
transformation plus the original. For example, there should not be:
`@-webkit-keyframes {
from {
-moz-transform:rotate(1deg);
-ms-transform:rotate(1deg);
-o-transform:rotate(1deg);
-webkit-transform:rotate(1deg);
transform:rotate(1deg);
}
...
}`
There should only be:
`@-webkit-keyframes {
from {
-webkit-transform:rotate(1deg);
transform:rotate(1deg);
}
...
}`
Because it is very unlikely that Firefox, IE, or anything else will read
@-webkit-keyframes and it is very unlikely that a Webkit browser will read
anything other -webkit-transform and transform. So we can save some space by
not sending values the browser will never read.
The current behaviour does not duplicate the original, and it only does -webkit.
Original comment by audvare
on 5 Dec 2011 at 11:29
Original issue reported on code.google.com by
l...@lukeblaney.co.uk
on 11 Nov 2011 at 12:08