Index: third_party/WebKit/LayoutTests/animations/animation-duration-infinite.html |
diff --git a/third_party/WebKit/LayoutTests/animations/animation-duration-infinite.html b/third_party/WebKit/LayoutTests/animations/animation-duration-infinite.html |
deleted file mode 100644 |
index 4c70fb6771c2810fe2918777d5ecc08fa5641309..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/animations/animation-duration-infinite.html |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-<!DOCTYPE html> |
-<style type="text/css"> |
- #target { |
- background-color: black; |
- width: 100px; |
- height: 100px; |
- } |
-</style> |
-<script> |
-function onLoad() { |
- var element = document.getElementById('target'); |
- var animation = element.animate( |
- {opacity: ['0', '1']}, |
- {duration: Infinity, iterationStart: 4.75}); |
-} |
-</script> |
-<body onload="onLoad()"> |
-<div id="target"></div> |
-</body> |