The following keyframes raise an uncaught TypeError.
[{transform: 'translate(50em)'},
{transform: 'translate(200px) rotate(40deg)'}]
This is fine:
[{transform: 'translate(50px)'},
{transform: 'translate(200px) rotate(40deg)'}]
As is this:
[{transform: 'translate(50em)'},
{transform: 'translate(200px)'}]
Will fix the TypeError ASAP, and replace it with treating non-px lengths as 0px (this it not a total fix, just a better failure).