Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Apparently including a select element as part of a css transform animation causes reflows to occur and negatively affects the animation's perceived smoothness and render time. Now in desktop browsers this is not really important and hardly noticeable, but on mobile devices unnecessary reflows are very expensive!

Here is a basic fiddle that demonstrates the issue: http://jsfiddle.net/w6NUT/ Open up the Dev Tools Timeline and notice how setting the select element to display: none; causes the "Layout" records to stop.

I have a rather complex web app where I'm creating a flip animation of a node with many child elements and this 'select' element is the only problem child.

Any ideas for how I might be able to work around this? I may end up submitting this as a bug to the webkit folks but I'm also looking for a short-term kludge hack fix.

share|improve this question
Did you get a chance to analyze the jsfiddle I created? Animating CSS Transforms are not suppose to cause reflows, but for some reason having a descendant select tag does. Take the select element away, and reflows do not occur during the animation. AFAIK, this is an undocumented bug. – BigMacAttack Aug 17 '12 at 18:17
I ended up submitting a bug: bugs.webkit.org/show_bug.cgi?id=94407 – BigMacAttack Jan 3 at 20:46

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.