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

Unified Diff: LayoutTests/css3/filters/fecomposite-non-zero-inoffset.html

Issue 365163002: Use correct destination rectangle in FEComposite w/ type='in' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Attempt to Mac-proof TC. Created 6 years, 5 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 | « no previous file | LayoutTests/css3/filters/fecomposite-non-zero-inoffset-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/filters/fecomposite-non-zero-inoffset.html
diff --git a/LayoutTests/css3/filters/fecomposite-non-zero-inoffset.html b/LayoutTests/css3/filters/fecomposite-non-zero-inoffset.html
new file mode 100644
index 0000000000000000000000000000000000000000..82b760b3f83e8eb2532e092a4a62f3378841e25a
--- /dev/null
+++ b/LayoutTests/css3/filters/fecomposite-non-zero-inoffset.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<body>
+ <div style="-webkit-filter: url('#filter'); filter: url('#filter'); width: 100px; height: 100px; padding: 1px;">
+ <div style="background-color: red; width: 98px; height: 98px;"></div>
+ </div>
+ <svg width="0" height="0">
+ <filter id="filter">
+ <feFlood result="outlineColor" flood-color="green"/>
+ <feMorphology in="SourceAlpha" operator="dilate" radius="1"/>
+ <feComposite operator="in" in="outlineColor"/>
+ </filter>
+ </svg>
+</body>
« no previous file with comments | « no previous file | LayoutTests/css3/filters/fecomposite-non-zero-inoffset-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698