summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-masking/clip-path-svg-content/clip-path-content-invisible.svg
blob: 0696d4b09fd125f0682ac6652236f8122d4b4d7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<svg xmlns="http://www.w3.org/2000/svg" xmlns:html="http://www.w3.org/1999/xhtml">
<g id="testmeta">
	<title>CSS Masking: Content of clipPath with visibility: hidden</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="match" href="reference/clip-path-invisible-ref.svg" />
	<metadata class="flags">svg</metadata>
	<desc class="assert">From the spec: "If a child element is made invisible
	by display or visibility it does not contribute to the clipping path."
	clipPath without content hides the clipped element. Nothing should be
	visible.
	</desc>
</g>
<clipPath id="clip1">
	<rect width="100" height="100" style="visibility: hidden;"/>
</clipPath>
<rect height="200" width="200" fill="green" clip-path="url(#clip1)"/>
</svg>