summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/filter-patterned-rect-02.svg
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/filters/filter-patterned-rect-02.svg')
-rw-r--r--layout/reftests/svg/filters/filter-patterned-rect-02.svg23
1 files changed, 23 insertions, 0 deletions
diff --git a/layout/reftests/svg/filters/filter-patterned-rect-02.svg b/layout/reftests/svg/filters/filter-patterned-rect-02.svg
new file mode 100644
index 0000000000..f15baa4afc
--- /dev/null
+++ b/layout/reftests/svg/filters/filter-patterned-rect-02.svg
@@ -0,0 +1,23 @@
+<!--
+ 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>
+ Filtering the patterned 'rect' should not cause the pattern (lime
+ 'circle') to be clipped or misplaced due to bad interaction with
+ the transforms.
+ </desc>
+ <defs>
+ <pattern id="pattern" patternUnits="userSpaceOnUse"
+ x="0" y="0" width="200" height="200">
+ <circle fill="lime" r="100" cx="100" cy="100"/>
+ </pattern>
+ <filter id="filter"><feGaussianBlur stdDeviation="0.001"/></filter>
+ </defs>
+ <rect width="100%" height="100%" fill="lime"/>
+ <circle fill="red" r="98" cx="300" cy="100"/>
+ <g transform="translate(100, 0)">
+ <rect width="200" height="200" fill="url(#pattern)" filter="url(#filter)" transform="translate(100, 0)"/>
+ </g>
+</svg>