The CSS transform-origin
property has different behavior in different browsers. (For example, try the snippet in this question in Chrome vs. FF40 vs. FF42 (developer's edition). In FF40 the origin for the transformation is incorrect while in the other two it is correct.
I need to figure out if transform-origin
works correctly or not in a given browser in order to determine if I should fall back to JS. So, while not ideal, false negatives are acceptable, but false positives are not. What's the best way to detect the behavior of transform-origin
?