mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
593 B
XML
23 lines
593 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
|
||
|
|
||
|
<title>Testcase for basic clipPath on foreignObject</title>
|
||
|
|
||
|
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=578309 -->
|
||
|
|
||
|
<defs>
|
||
|
<clipPath id="clip">
|
||
|
<rect x="20" y="20" width="100" height="100"/>
|
||
|
</clipPath>
|
||
|
</defs>
|
||
|
|
||
|
<rect width="100%" height="100%" fill="lime"/>
|
||
|
|
||
|
<rect x="20" y="20" width="100" height="100" fill="red"/>
|
||
|
<foreignObject x="20" y="20" width="100" height="100" clip-path="url(#clip)">
|
||
|
<svg>
|
||
|
<rect width="100" height="100" fill="lime"/>
|
||
|
</svg>
|
||
|
</foreignObject>
|
||
|
|
||
|
</svg>
|