Index: third_party/WebKit/LayoutTests/css3/filters/animated-filter-svg-element.html |
diff --git a/third_party/WebKit/LayoutTests/css3/filters/animated-filter-svg-element.html b/third_party/WebKit/LayoutTests/css3/filters/animated-filter-svg-element.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1b409ab70271542d312928b58b4f0d235e3accdc |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/css3/filters/animated-filter-svg-element.html |
@@ -0,0 +1,19 @@ |
+<!doctype html> |
alancutter (OOO until 2018)
2016/05/23 00:55:10
This test should live under LayoutTests/animations
Noel Gordon
2016/05/23 02:12:07
Move them there, done.
|
+ |
+<style> |
+ @keyframes blur-animation { |
+ from { |
+ filter: blur(10px); |
+ } to { |
+ filter: blur(10px); |
+ } |
+ } |
+</style> |
+ |
+<svg style="animation: blur-animation 1s infinite"> |
+ <rect fill="blue" x="0" y="0" height="100" width="100" /> |
+</svg> |
+ |
+<svg style="animation: blur-animation 1s infinite"> |
alancutter (OOO until 2018)
2016/05/23 00:55:10
Should this be on the inner rect?
Noel Gordon
2016/05/23 02:12:07
Indeed it should. Changed to use id selectors
|
+ <rect fill="blue" x="0" y="0" height="100" width="100" /> |
+</svg> |