()
| 65 | // Helper function to check if transform3D is supported. |
| 66 | // Should return true for Webkits and Firefox 10+. |
| 67 | function checkTransform3dSupport() { |
| 68 | div.style[support.transform] = ''; |
| 69 | div.style[support.transform] = 'rotateY(90deg)'; |
| 70 | return div.style[support.transform] !== ''; |
| 71 | } |
| 72 | |
| 73 | var isChrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1; |
| 74 |
no outgoing calls
no test coverage detected
searching dependent graphs…