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

Unified Diff: third_party/WebKit/LayoutTests/css3/filters/effect-reference-convolve-error.html

Issue 1380733002: Refine FilterEffect::createTransparentBlack (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | third_party/WebKit/LayoutTests/css3/filters/effect-reference-convolve-error-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/css3/filters/effect-reference-convolve-error.html
diff --git a/third_party/WebKit/LayoutTests/css3/filters/effect-reference-convolve-error.html b/third_party/WebKit/LayoutTests/css3/filters/effect-reference-convolve-error.html
new file mode 100644
index 0000000000000000000000000000000000000000..1f1a86d46a72b8e9220371958b6b79d0be4b07a6
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/css3/filters/effect-reference-convolve-error.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<div style="width: 100px; height: 100px; background-color: red; -webkit-filter: url(#f); filter: url(#f)"></div>
+<svg height="0">
+ <filter id="f" x="0" y="0" width="1" height="1">
+ <feConvolveMatrix/>
+ <feColorMatrix values="1 0 0 0 0,
+ 0 1 0 0 0.5,
+ 0 0 1 0 0,
+ 0 0 0 1 1"
+ color-interpolation-filters="sRGB"/>
+ </filter>
+</svg>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/filters/effect-reference-convolve-error-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698