summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/use-02-extref-ref.svg
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /layout/reftests/svg/use-02-extref-ref.svg
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/svg/use-02-extref-ref.svg')
-rw-r--r--layout/reftests/svg/use-02-extref-ref.svg30
1 files changed, 30 insertions, 0 deletions
diff --git a/layout/reftests/svg/use-02-extref-ref.svg b/layout/reftests/svg/use-02-extref-ref.svg
new file mode 100644
index 000000000..c5b0d6c6c
--- /dev/null
+++ b/layout/reftests/svg/use-02-extref-ref.svg
@@ -0,0 +1,30 @@
+<?xml version="1.0"?>
+<svg xmlns="http://www.w3.org/2000/svg">
+ <g id="testContent" color="forestgreen">
+ <defs>
+ <linearGradient id="linearGrad" gradientUnits="objectBoundingBox" y1="0" x1="0" y2="1" x2="1">
+ <stop offset="0%" stop-color="royalblue"/>
+ <stop offset="33%" stop-color="white"/>
+ <stop offset="50%" stop-color="darkblue"/>
+ <stop offset="66%" stop-color="white"/>
+ <stop offset="100%" stop-color="royalblue"/>
+ </linearGradient>
+
+ <radialGradient id="radialGrad" gradientUnits="objectBoundingBox" cx="0.5" cy="0.5" r="0.5" fx="0.15" fy="0.15">
+ <stop offset="000%" stop-color="orange" />
+ <stop offset="033%" stop-color="red" />
+ <stop offset="050%" stop-color="gold" />
+ <stop offset="066%" stop-color="red" />
+ <stop offset="100%" stop-color="orange" />
+ </radialGradient>
+ </defs>
+
+ <rect x="0" y="0" width="200" height="125" stroke="none"
+ fill="url(#linearGrad)"/>
+ <rect x="200" y="0" width="200" height="125" stroke="none"
+ fill="currentColor"/>
+ <rect x="0" y="125" width="200" height="125" stroke="none"
+ fill="currentColor"/>
+ <rect x="200" y="125" width="200" height="125" stroke="none" fill="url(#radialGrad)" />
+ </g>
+</svg>