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

Unified Diff: third_party/WebKit/LayoutTests/css3/filters/effect-reference-merge-no-inputs.html

Issue 1368113002: Allow zero inputs for feMerge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase; Drop assert. 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-merge-no-inputs-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-merge-no-inputs.html
diff --git a/third_party/WebKit/LayoutTests/css3/filters/effect-reference-merge-no-inputs.html b/third_party/WebKit/LayoutTests/css3/filters/effect-reference-merge-no-inputs.html
new file mode 100644
index 0000000000000000000000000000000000000000..256daa10b44293140a5648551a5c3840b14edd0b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/css3/filters/effect-reference-merge-no-inputs.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<style>
+#target {
+ width: 100px;
+ height: 100px;
+ background-color: green;
+ -webkit-filter: url(#emptyMerge);
+ filter: url(#emptyMerge);
+}
+</style>
+<div id="target"></div>
+<svg height="0">
+ <filter id="emptyMerge">
+ <feColorMatrix values="0 1 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 1 0" result="red"/>
+ <feMerge/>
+ <feComposite in2="SourceGraphic"/>
+ </filter>
+</svg>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/filters/effect-reference-merge-no-inputs-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698