chromium/third_party/blink/web_tests/svg/css/transform-origin-zoom.svg

<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" style="zoom: 2">
  <!-- Test for http://crbug.com/375664 -->

  <rect x="101" y="101" width="98" height="98" fill="red" transform="rotate(45, 150, 150)"/>
  <rect x="100" y="100" width="100" height="100" fill="green" style="
    transform-origin: 150px 150px;
    transform: rotate(45deg);
  "/>

  <rect x="301" y="101" width="98" height="98" fill="red" transform="rotate(45, 350, 150)"/>
  <rect x="300" y="100" width="100" height="100" fill="green" style="
    transform-box: fill-box;
    transform-origin: 50% 50%;
    transform: rotate(45deg);
  "/>
</svg>