Curious CSS transform behavior in chrome (webkit browser) using JavaScript...
var obj = document.getElementById('foooo');
// obj.style.transform == "";
obj.style.transform = "rotate(45deg)"; // works (another 2d transform)
obj.style.transform = "translate(-50px,0px)"; // fails as "" (bug?)
obj.style.WebkitTransition = "translate(-50px,0px)"; // fails as ""
obj.style.MozTransition = "translate(-50px,0px)"; // fails as ""
obj.style = "transform: translate(-50px,0px)"; // works (solution)
Any ideas why this happens, or if this error is repeatable?