blob: edfccbd83f86b39443d7e46503bb4203e9fd5a07 [file] [log] [blame]
<svg xmlns="http://www.w3.org/2000/svg" xmlns:html="http://www.w3.org/1999/xhtml">
<g id="testmeta">
<title>CSS Masking: Dynamic change of clipPathUnits on clipPath</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-square-003-ref.svg" />
<metadata class="flags">svg</metadata>
<desc class="assert">The clipPathUnits attribute on the clipPath
element gets changed dynamically from objectBoundingBox to userSpaceOnUse.
This reduces the clipping area from a size much bigger than the document to
the size of the green rectangle. A green square should be visible.</desc>
</g>
<clipPath id="clip1" clipPathUnits="objectBoundingBox">
<rect width="200" height="200"/>
</clipPath>
<rect width="400" height="400" fill="red" clip-path="url(#clip1)"/>
<rect width="200" height="200" fill="green"/>
<script>
var clip = document.getElementById("clip1");
var enumeration = clip.clipPathUnits;
enumeration.baseVal = 1; // Switch to userSpaceOnUse!
</script>
</svg>