Index: third_party/WebKit/LayoutTests/paint/invalidation/filters/effect-reference-repaint-lighting-expected.html |
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/filters/effect-reference-repaint-lighting-expected.html b/third_party/WebKit/LayoutTests/paint/invalidation/filters/effect-reference-repaint-lighting-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bb472e7ee83c19923ff0f1c16f1e38c171ae9164 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/filters/effect-reference-repaint-lighting-expected.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+<style> |
+.box { |
+ width: 200px; |
+ height: 200px; |
+ margin: 20px; |
+ background-image: radial-gradient(transparent, black); |
+ filter: url(#lighting); |
+} |
+</style> |
+<div class="box"></div> |
+<svg width="0" height="0"> |
+ <filter id="lighting" x="-0.5" y="-0.5" width="2" height="2"> |
+ <feDiffuseLighting surfaceScale="200"> |
+ <feDistantLight azimuth="135"/> |
+ </feDiffuseLighting> |
+ <feComposite operator="in" x="50" y="50" width="100" height="100" in2="SourceGraphic"/> |
+ </filter> |
+</svg> |