Index: third_party/WebKit/LayoutTests/css3/filters/filter-region-negative-transformed-child-expected.html |
diff --git a/third_party/WebKit/LayoutTests/css3/filters/filter-region-negative-transformed-child-expected.html b/third_party/WebKit/LayoutTests/css3/filters/filter-region-negative-transformed-child-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..686e747bde62eb2d40e599c3533527d9f61e211c |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/css3/filters/filter-region-negative-transformed-child-expected.html |
@@ -0,0 +1,32 @@ |
+<svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1"> |
+ <defs> |
+ <filter id="f1" color-interpolation-filters="sRGB"> |
+ <feColorMatrix type="matrix" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"/> |
+ </filter> |
+ </defs> |
+</svg> |
+<style> |
+.box { |
+ width: 100px; |
+ height: 100px; |
+ position: absolute; |
+} |
+.green { |
+ background-color: green; |
+} |
+.blue { |
+ background-color: blue; |
+} |
+.below { |
+ top: 100px; |
+} |
+.parent { |
+ filter: url(#f1); |
+ background-color: white; |
+ position: relative; |
+} |
+</style> |
+<div class="parent"> |
+<div class="blue box"></div> |
+<div class="green box below"></div> |
+</div> |