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

Unified Diff: LayoutTests/svg/filters/feimage-invalid-image-expected.svg

Issue 1334173004: Switch SVGFEImage from SkBitmapSource to SkImageSource (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: spec compliant + test Created 5 years, 3 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/feimage-invalid-image-expected.svg
diff --git a/LayoutTests/svg/filters/feimage-invalid-image-expected.svg b/LayoutTests/svg/filters/feimage-invalid-image-expected.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0c4bd6d578c838a551f11321f363471393bbec98
--- /dev/null
+++ b/LayoutTests/svg/filters/feimage-invalid-image-expected.svg
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <filter id="greenify">
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1"/>
+ </filter>
+ </defs>
+
+ <rect x="100" y="50" width="200" height="100" filter="url(#greenify)"/>
+ <rect x="100" y="200" width="200" height="100" filter="url(#greenify)"/>
+ <rect x="100" y="350" width="200" height="100" filter="url(#greenify)"/>
+ <rect x="100" y="500" width="200" height="100" filter="url(#greenify)"/>
+
+</svg>

Powered by Google App Engine
This is Rietveld 408576698