summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/filter-marked-line-09.svg
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/filters/filter-marked-line-09.svg')
-rw-r--r--layout/reftests/svg/filters/filter-marked-line-09.svg27
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/svg/filters/filter-marked-line-09.svg b/layout/reftests/svg/filters/filter-marked-line-09.svg
new file mode 100644
index 0000000000..55ff716067
--- /dev/null
+++ b/layout/reftests/svg/filters/filter-marked-line-09.svg
@@ -0,0 +1,27 @@
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<svg xmlns="http://www.w3.org/2000/svg" version="1.0">
+ <desc>
+ The combination of the 'viewBox' attribute on the 'marker' and the 'transform'
+ attributes on the 'g', 'path' and 'circle' elements should not cause the mark
+ (lime 'circle') to be clipped when the 'path' is filtered.
+ </desc>
+ <defs>
+ <marker id="marker" markerWidth="200" markerHeight="200" refX="0" refY="100"
+ markerUnits="userSpaceOnUse" viewBox="-100 0 200 200">
+ <g transform="translate(100, 0)">
+ <circle fill="lime" r="100" cx="-200" cy="100" transform="translate(100, 0)"/>
+ </g>
+ </marker>
+ <filter id="filter"><feGaussianBlur stdDeviation="0.001"/></filter>
+ </defs>
+ <rect width="100%" height="100%" fill="lime"/>
+ <circle fill="red" r="98" cx="200" cy="100"/>
+ <g transform="translate(100, 0)">
+ <g filter="url(#filter)">
+ <path d="M-100,0 l100,100 200,200" marker-mid="url(#marker)" transform="translate(100, 0)"/>
+ </g>
+ </g>
+</svg>