mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-20 19:50:10 +01:00
11 lines
313 B
XML
11 lines
313 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000">
|
||
|
|
<clipPath id="clip" clipPathUnits="objectBoundingBox">
|
||
|
|
<circle cx=".5" cy=".5" r=".5" />
|
||
|
|
</clipPath>
|
||
|
|
|
||
|
|
<rect x="100" y="-900" width="800" height="800"
|
||
|
|
stroke="green" stroke-width="100"
|
||
|
|
clip-path="url(#clip)" />
|
||
|
|
|
||
|
|
</svg>
|