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

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

Issue 2975793004: Move animation svg tests to own subdirectory (Closed)
Patch Set: Created 3 years, 5 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/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
deleted file mode 100644
index 8cd770a6578e0fc39a832773454347d9ac66efbb..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/animated-filter-svg-element.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!doctype html>
-
-<style>
- @keyframes blur-animation {
- from {
- filter: blur(10px);
- } to {
- filter: blur(10px);
- }
- }
-
- #root, #child {
- display: block;
- animation: blur-animation 1s infinite;
- }
-</style>
-
-<svg id="root" height="100">
- <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>

Powered by Google App Engine
This is Rietveld 408576698