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> |