Hi, I'm learning SVG and not quite sure if this is a bug. With the following code, the blue box is properly centered in Chrome but not in the PDF output of Prince, as if the transform-origin attribute is not specified. The doc doesn't mention it's unsupported. Thanks!
<!DOCTYPE html>
<html>
<body>
<svg width="100" height="100" style="background-color: #e4e4e4" version="1.1" xmlns="http://www.w3.org/2000/svg">
<rect x="30" y="30" width="40" height="40" fill="transparent" stroke="red" />
<rect x="30" y="30" width="40" height="40" fill="rgba(200,200,255,0.5)" stroke="blue" transform="scale(2, 0.5)" transform-origin="50% 50%" />
</svg>
</body>
</html>