RESOLVED INVALID33007
webkit-transform-origin-z is being ignored
https://bugs.webkit.org/show_bug.cgi?id=33007
Summary webkit-transform-origin-z is being ignored
Gene Dronek
Reported 2009-12-28 20:44:27 PST
HERE IS A SORT OF TEST DOCUMENT. My platform is Leopard 10.5.8 PPC (1) there is "no effect" even if you change the transform-origin-z, presently at 80px. (2) and the console debugger doesn't show transform-origin-Z on the element. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Test OriginZ</title> <style> #a {-webkit-transform-style: preserve-3d; -webkit-perspective: 200; } #b {-webkit-transform-origin: 0 0px; -webit-transform-origin-z: 80px; } #b {-webkit-transform: rotateX( 20deg ) } </style> </head> <body> <div id=a style='width:200px;height:200px;background:lightgreen;' > <div id=b style='width:40px;height:40px;background:blue' ></div> </div> </body> </html>
Attachments
Testcase (658 bytes, text/html)
2010-04-26 09:44 PDT, Simon Fraser (smfr)
no flags
Simon Fraser (smfr)
Comment 1 2010-04-26 09:44:22 PDT
Created attachment 54308 [details] Testcase You had a typo: "-webit-transform-origin-z". Also, you have to make the parent div semi-transparent to see the result.
Note You need to log in before you can comment on or make changes to this bug.