There is a problem with the website code.
Per http://www.w3.org/TR/css3-transforms/#transform-functions , rotate3d(<number>, <number>, <number>, <angle>) indicates a 3D rotation at the angle indicated in the last parameter relative to the direction vector [x,y,z] described by the first three parameters. A direction vector that cannot be normalized, for example [0,0,0] , will result in rotation not being applied.
For a WebKit-based browser, the site ran -webkit-transform: rotate3d(0,0,0,0deg) in keyframes, which are invalid values โโand therefore must be rejected. Instead, you want to do -webkit-transform: rotate3d(1,1,1,0deg) .
Therefore, each browser is consistent with this behavior, so I would say that this is a content issue.
It is monitored by https://bugs.webkit.org/show_bug.cgi?id=112274 inside WebKit, but it is very likely that we will close the error without doing anything.
source share