Index: third_party/WebKit/LayoutTests/animations/zero-duration-infinite-iterations.html |
diff --git a/third_party/WebKit/LayoutTests/animations/zero-duration-infinite-iterations.html b/third_party/WebKit/LayoutTests/animations/zero-duration-infinite-iterations.html |
deleted file mode 100644 |
index b1ca038d2ed6d82eaa60e1a308eec2893260e712..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/animations/zero-duration-infinite-iterations.html |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-<!DOCTYPE html> |
-<style> |
-p { |
- animation: test infinite; |
-} |
-@keyframes test { |
- 0% { |
- } |
-} |
-</style> |
-<script> |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
-</script> |
-<body> |
-<p>This tests an animation with zero duration and infinite iterations. See http:://crbug.com/322575. |
-<p>This test passes if it doesn't crash. |
-<body |