Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/testing/web-platform/tests/svg/render/order/clip-path-filter-order.svg
width="800" height="600" viewBox="0 0 800 600">
<metadata>
<h:link rel="author" title="Philip Rogers" href="mailto:pdr@chromium.org"/>
<h:link rel="match" href="clip-path-filter-order-ref.svg"/>
<h:meta name="assert" content="Clip path should apply after filtering."/>
</metadata>
<defs>
<filter id="redDropShadowFilter">
<feOffset result="offsetOut" in="SourceGraphic" dx="10" dy="10" />
<feColorMatrix result="colorMatrixOut" in="offsetOut" type="matrix"
values="1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0" />
<feGaussianBlur result="blurOut" in="colorMatrixOut" stdDeviation="15" />
<feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
</filter>
<clipPath id="clipPath">
<rect x="100" y="100" width="200" height="200" />
</clipPath>
</defs>
<rect x="100" y="100" width="400" height="400" fill="green"
filter="url(#redDropShadowFilter)" clip-path="url(#clipPath)" />
</svg>