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

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: fixed-size <svg> 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
« no previous file with comments | « LayoutTests/svg/filters/feimage-invalid-image.svg ('k') | Source/core/svg/SVGFEImageElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..8bd891663c2dd9001025df7958ec67fee383160c
--- /dev/null
+++ b/LayoutTests/svg/filters/feimage-invalid-image-expected.svg
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="800" height="600" 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>
« no previous file with comments | « LayoutTests/svg/filters/feimage-invalid-image.svg ('k') | Source/core/svg/SVGFEImageElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698