https://drafts.csswg.org/css-transforms/#svg-transforms does not reflect implementations correctly.
Syntax says:
transform
| transform comma-wsp transforms
which requires a comma or a wsp between transform functions. Browsers do not require any separation between transform functions.
Example:
<rect width="20" height="20" transform="translate(20, 20)scale(20)"/>
... does translate and scale the rect in Safari, Chrome and Firefox.
https://drafts.csswg.org/css-transforms/#svg-transforms does not reflect implementations correctly.
Syntax says:
which requires a comma or a wsp between transform functions. Browsers do not require any separation between transform functions.
Example:
... does translate and scale the rect in Safari, Chrome and Firefox.