Two transforms produce visually different results. What is the end position of an element with `transform: translateX(100px) scale(2)` versus `transform: scale(2) translateX(100px)`?
/* A */ transform: translateX(100px) scale(2);
/* B */ transform: scale(2) translateX(100px);