chromium/third_party/blink/web_tests/external/wpt/css/css-masking/clip-path-svg-content/clip-path-content-invisible.svg

<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:[email protected]"/>
	<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>