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

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

Issue 2065593002: Unprefix the CSS 'filter' property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove disabler. Try different DCHECK expressions. Created 4 years, 6 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/animated-filter-svg-element-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/animated-filter-svg-element-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698