Index: third_party/WebKit/LayoutTests/animations/zero-duration-large-start-delay.html |
diff --git a/third_party/WebKit/LayoutTests/animations/zero-duration-large-start-delay.html b/third_party/WebKit/LayoutTests/animations/zero-duration-large-start-delay.html |
deleted file mode 100644 |
index 050d0e345bb73ef2f160911e1fe508e856f93605..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/animations/zero-duration-large-start-delay.html |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-<!DOCTYPE html> |
-<style> |
-p { |
- animation-name: test; |
- animation-fill-mode: backwards; |
- /* Approx 2^54 */ |
- animation-delay: 18000000000000000s; |
-} |
-@keyframes test { |
- 0% { |
- } |
-} |
-</style> |
-<script> |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
-</script> |
-<body> |
-<p>This tests an animation with zero duration and a very large start delay. See http:://crbug.com/324323. |
-<p>This test passes if it doesn't crash. |
-<body |