Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: LayoutTests/svg/filters/feDropShadow-flood-opacity-2.svg

Issue 143463002: Apply flood-opacity for feDropShadow (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/svg/filters/feDropShadow-flood-opacity-2.svg
diff --git a/LayoutTests/svg/filters/feDropShadow-flood-opacity-2.svg b/LayoutTests/svg/filters/feDropShadow-flood-opacity-2.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fa68df79eef1704a495ea56cff03bfbb5f188229
--- /dev/null
+++ b/LayoutTests/svg/filters/feDropShadow-flood-opacity-2.svg
@@ -0,0 +1,11 @@
+<svg xmlns="http://www.w3.org/2000/svg">
+ <defs>
+ <filter id="ds1" filterPrimitiveUnits="userSpaceOnUse" filterUnits="userSpaceOnUse"
+ width="100" height="100" x="0" y="0" color-interpolation-filters="sRGB">
+ <feDropShadow flood-color="rgb(255,0,0)" flood-opacity="0.2"
+ dx="0" dy="50" stdDeviation="0"/>
+ </filter>
+ </defs>
+ <rect y="50" width="100" height="50" fill="#00ff00"/>
+ <rect width="100" height="50" fill="#33cc00" filter="url(#ds1)"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698