Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/animations/animated-filter-svg-element.html |
| diff --git a/third_party/WebKit/LayoutTests/animations/animated-filter-svg-element.html b/third_party/WebKit/LayoutTests/animations/animated-filter-svg-element.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ac4ecf9439f45025259b79c05cdb4f3236464fad |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/animations/animated-filter-svg-element.html |
| @@ -0,0 +1,23 @@ |
| +<!doctype html> |
| + |
| +<style> |
| + @keyframes blur-animation { |
| + from { |
| + filter: blur(10px); |
| + } to { |
| + filter: blur(10px); |
| + } |
| + } |
| + |
| + #root, #child { |
| + animation: blur-animation 1s infinite; |
| + } |
| +</style> |
| + |
| +<svg id="root"> |
| + <rect fill="blue" x="0" y="0" height="100" width="100" /> |
| +</svg> |
| + |
| +<svg> |
| + <rect id="child" fill="blue" x="0" y="0" height="100" width="100" /> |
| +</svg> |