Index: LayoutTests/svg/filters/feDropShadow-linearrgb-flood-color-expected.svg |
diff --git a/LayoutTests/svg/filters/feDropShadow-linearrgb-flood-color-expected.svg b/LayoutTests/svg/filters/feDropShadow-linearrgb-flood-color-expected.svg |
new file mode 100644 |
index 0000000000000000000000000000000000000000..40909580b0b780be6efb1cd26b495f74d3368ac1 |
--- /dev/null |
+++ b/LayoutTests/svg/filters/feDropShadow-linearrgb-flood-color-expected.svg |
@@ -0,0 +1,12 @@ |
+<svg xmlns="http://www.w3.org/2000/svg"> |
+ <filter id="ds-srgb" width="1" height="1" x="0" y="0" color-interpolation-filters="sRGB"> |
+ <feFlood flood-color="#008000"/> |
+ <feColorMatrix type="identity"/> |
+ </filter> |
+ <filter id="ds-linearrgb" width="1" height="1" x="0" y="0" color-interpolation-filters="linearRGB"> |
+ <feFlood flood-color="#008000"/> |
+ <feColorMatrix type="identity"/> |
+ </filter> |
+ <rect width="100" height="50" filter="url(#ds-srgb)"/> |
+ <rect y="50" width="100" height="50" filter="url(#ds-linearrgb)"/> |
+</svg> |