Index: third_party/WebKit/LayoutTests/svg/animations/filter-primitive-region.html |
diff --git a/third_party/WebKit/LayoutTests/svg/animations/filter-primitive-region.html b/third_party/WebKit/LayoutTests/svg/animations/filter-primitive-region.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a84218a4ff7ec80b0e2866651767331cea32eafc |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/svg/animations/filter-primitive-region.html |
@@ -0,0 +1,13 @@ |
+<!DOCTYPE html> |
+<style>body, html { margin: 0; }</style> |
+<svg> |
+ <filter id="f"> |
+ <feFlood flood-color="green"> |
+ <set attributeName="x" to="10"/> |
+ <set attributeName="y" to="10"/> |
+ <set attributeName="width" to="100"/> |
+ <set attributeName="height" to="100"/> |
+ </feFlood> |
+ </filter> |
+ <rect x="10" y="10" width="100" height="100" filter="url(#f)"/> |
+</svg> |