chromium/third_party/blink/web_tests/svg/clip-path/clip-path-with-different-unittypes.svg

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
    <clipPath id="clipClip">
        <rect x="150" y="150" width="50" height="50"/>
    </clipPath>
    <clipPath id="clip" clipPathUnits="objectBoundingBox" clip-path="url(#clipClip)">
        <circle cx="0.5" cy="0.5" r="0.5"/>
    </clipPath>
</defs>

<rect x="40" y="40" height="300" width="300" style="fill:green;clip-path:url(#clip);"/>
</svg>