Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(609)

Unified Diff: third_party/WebKit/LayoutTests/css3/filters/animated-filter-svg-element.html

Issue 1987943002: [wip] unprefix filter Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add animation blur filter test. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698