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/layout/reftests/svg/filters/filter-marked-line-01.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<svg xmlns="http://www.w3.org/2000/svg" version="1.0">
<desc>
Filtering the 'line' should not cause the mark (lime 'circle') to be clipped.
</desc>
<defs>
<marker id="marker" markerWidth="200" markerHeight="200" refX="100" refY="100"
markerUnits="userSpaceOnUse">
<circle fill="lime" r="100" cx="100" cy="100"/>
</marker>
<filter id="filter"><feGaussianBlur stdDeviation="0.001"/></filter>
</defs>
<rect width="100%" height="100%" fill="lime"/>
<circle fill="red" r="98" cx="100" cy="100"/>
<line x2="100" y2="100" marker-end="url(#marker)" filter="url(#filter)"/>
</svg>