chromium/third_party/blink/web_tests/paint/overflow/transformed-svg-clipping.html

<!DOCTYPE html>
<style>
svg {
  transform-origin: center;
  transform: scale(2.0);
  border: 2px solid red;
}
div {
  overflow: hidden;
  border: 1px solid black;
  height: 150px;
  width: 300px;
  border-radius: 4px;
}
</style>
<div>
<svg width="300px" height="150px">
  <rect x="0" y="0" width="300" height="150" fill="green">
</svg>
</div>