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

Unified Diff: LayoutTests/css3/filters/effect-reference-source-alpha-not-first.html

Issue 1056353003: Derive the SourceAlpha filter input from SourceGraphic (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix variable name. Created 5 years, 8 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/effect-reference-source-alpha-not-first-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/filters/effect-reference-source-alpha-not-first.html
diff --git a/LayoutTests/css3/filters/effect-reference-source-alpha-not-first.html b/LayoutTests/css3/filters/effect-reference-source-alpha-not-first.html
new file mode 100644
index 0000000000000000000000000000000000000000..d57cc3dc4e6ceae221e25b6aaf8525214c945bee
--- /dev/null
+++ b/LayoutTests/css3/filters/effect-reference-source-alpha-not-first.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<style>
+div {
+ position: absolute;
+ width: 100px;
+ height: 100px;
+}
+#test {
+ background-color: red;
+ -webkit-filter: opacity(0) url(#f);
+ filter: opacity(0) url(#f);
+}
+</style>
+<div style="background-color: green"></div>
+<div id="test"></test>
+<svg height="0">
+ <filter id="f">
+ <feMerge><feMergeNode in="SourceAlpha"></feMergeNode></feMerge>
+ </filter>
+</svg>
« no previous file with comments | « no previous file | LayoutTests/css3/filters/effect-reference-source-alpha-not-first-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698