[vlc-commits] Also set the webkit transform dom extension for	Safari and Chrome
    Ludovic Fauvet 
    git at videolan.org
       
    Tue Jan  1 18:56:15 CET 2013
    
    
  
npapi-vlc | branch: master | Ludovic Fauvet <etix at videolan.org> | Tue Jan  1 18:52:31 2013 +0100| [bb8565b78f47b7d0015cba10ff82b3de3d5e3bad] | committer: Ludovic Fauvet
Also set the webkit transform dom extension for Safari and Chrome
> http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=bb8565b78f47b7d0015cba10ff82b3de3d5e3bad
---
 share/test/test.html |    6 ++++++
 1 file changed, 6 insertions(+)
diff --git a/share/test/test.html b/share/test/test.html
index f7e4b89..96f2e6d 100644
--- a/share/test/test.html
+++ b/share/test/test.html
@@ -521,9 +521,15 @@ function doToggle3dTransform()
     if( vlc )
     {
         if (!vlc.style.transform)
+        {
             vlc.style.transform = transform;
+            vlc.style.webkitTransform = transform;
+        }
         else
+        {
             vlc.style.transform = '';
+            vlc.style.webkitTransform = '';
+        }
     }
 }
 
    
    
More information about the vlc-commits
mailing list