Index: LayoutTests/svg/custom/fill-fallback-currentcolor-1.svg |
diff --git a/LayoutTests/svg/custom/fill-fallback-currentcolor-1.svg b/LayoutTests/svg/custom/fill-fallback-currentcolor-1.svg |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b955a94d01389887738feadadaa06086c128ba58 |
--- /dev/null |
+++ b/LayoutTests/svg/custom/fill-fallback-currentcolor-1.svg |
@@ -0,0 +1,9 @@ |
+<svg xmlns="http://www.w3.org/2000/svg"> |
+ <linearGradient id="lg"> |
+ <stop stop-color="#008000"/> |
+ </linearGradient> |
+ <!-- Test that 'fill' on the 'rect' uses the gradient 'lg'. --> |
+ <g color="#ff0000" fill="#ff0000"> |
+ <rect width="100" height="100" fill="url(#lg) currentColor"/> |
+ </g> |
+</svg> |