REGRESSION(r46105-r46282): Bad rendering with scaled tiled layer
https://bugs.webkit.org/show_bug.cgi?id=27652
Summary REGRESSION(r46105-r46282): Bad rendering with scaled tiled layer
guillaume.esquevin
Reported 2009-07-24 07:26:34 PDT
2D scale animation just became laggy and full of glitches in webkit nightly (while still rendering perfectly in the current release of safari) You can see it in this animation when the star wars title shows : http://esquevin.com/starwars.html
Attachments
Glitches on scaled text during animation (473.55 KB, image/png)
2009-07-28 09:18 PDT, guillaume.esquevin
no flags
Simon Fraser (smfr)
Comment 1 2009-07-28 08:52:11 PDT
Can you attach a screenshot of the glitches? Thanks.
guillaume.esquevin
Comment 2 2009-07-28 09:18:35 PDT
Created attachment 33650 [details] Glitches on scaled text during animation
guillaume.esquevin
Comment 3 2009-07-28 09:21:56 PDT
Here is the CSS I use on this text. It runs perfectly and smoothly in the latest safari, but is buggy and laggish in webkit nightly @-webkit-keyframes title { 0% { opacity:1; -webkit-transform: scale(5); } 80% { -webkit-transform: scale(1); opacity: 1; } 100% { opacity: 0; -webkit-transform: scale(0.05); } } h1 { text-transform: uppercase; font-size: 10em; font-family: "arial bold"; letter-spacing: -0.1em; width: 4em; position: absolute; top: 50%; left: 50%; margin: -1em 0 0 -2em; line-height: 0.7; text-align: center; -webkit-text-stroke: 0.05em #FFCC00; color: transparent; opacity: 0; -webkit-animation: title 7s 1 linear; -webkit-animation-delay: 3s; }
Simon Fraser (smfr)
Comment 4 2009-08-26 10:33:57 PDT
Note You need to log in before you can comment on or make changes to this bug.