blob: dc1040e51de157f47c0b768f9fb0261d76305c16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:html="http://www.w3.org/1999/xhtml" width="10000" height="400">
<g id="testmeta">
<title>CSS Masking: clipPath and mask nesting 10</title>
<html:link rel="author" title="Dirk Schulze" href="mailto:dschulze@adobe.com"/>
<html:link rel="help" href="http://www.w3.org/TR/css-masking-1/#svg-clipping-paths"/>
<html:link rel="help" href="http://www.w3.org/TR/css-masking-1/#ClipPathElement"/>
<html:link rel="help" href="http://www.w3.org/TR/css-masking-1/#svg-masks"/>
<html:link rel="help" href="http://www.w3.org/TR/css-masking-1/#MaskElement"/>
<html:link rel="match" href="reference/mask-nested-clip-path-003-ref.svg" />
<metadata class="flags">svg</metadata>
<desc class="assert">Multiple references between clipPath and
mask elements. You should see 2 equally sized and positioned green
squares next to each other.</desc>
</g>
<defs>
<mask id="mask">
<!-- forcing a repaintRect offset -->
<rect x="100" width="1" height="1" fill="black"/>
<rect x="200" width="8092" height="100" fill="white"/>
</mask>
<clipPath id="clip1">
<!-- forcing clipping via masking -->
<path d="M 0 0 V 100 H 10000 V 0 Z"/>
</clipPath>
<clipPath id="clip2" clip-path="url(#clip1)">
<path d="M 100 0 H 200 V 200 H 8292 V 0 Z"/>
</clipPath>
<mask id="crop">
<rect width="300" height="100" fill="white"/>
</mask>
</defs>
<g mask="url(#crop)" transform="translate(-100, 0)">
<rect width="10000" height="400" fill="red" mask="url(#mask)"/>
<rect x="199" width="101" height="100" fill="green"/>
</g>
<g mask="url(#crop)" transform="translate(100, 0)">
<rect width="10000" height="400" fill="red" clip-path="url(#clip2)"/>
<rect x="199" width="101" height="100" fill="green"/>
</g>
</svg>
|