I'm having trouble implementing a 3d transform (specifically a Y axis rotation) in Androids webkit browser.
My implementation is similar to this example: http://desandro.github.com/3dtransforms/examples/card-01.html
A div is flipped through -webkit-transform: rotateY( 180deg );
but it seems that -webkit-backface-visibility: hidden;
does not have any effect, as the backside of the div is always visible. Here is a screenshot from the Android emulator running 4.1:
What is going on here? The example is working fine on iOS safari. Is this a known Android bug, is there any way to work around this?