Index: third_party/WebKit/LayoutTests/animations/timing-functions-neutral-keyframe.html |
diff --git a/third_party/WebKit/LayoutTests/animations/timing-functions-neutral-keyframe.html b/third_party/WebKit/LayoutTests/animations/timing-functions-neutral-keyframe.html |
deleted file mode 100644 |
index a071e47f83d2d45828c31a972aedf7dcd6b949ac..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/animations/timing-functions-neutral-keyframe.html |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-<!DOCTYPE html> |
-<script src="../resources/testharness.js"></script> |
-<script src="../resources/testharnessreport.js"></script> |
-<style> |
- @keyframes anim { |
- from { animation-timing-function: linear; } |
- to { left: 500px; } |
- } |
- |
- #target { |
- animation: anim 10s -1s paused ease-in-out; |
- left: 0px; |
- position: absolute; |
- } |
-</style> |
-<div id="target"></div> |
-<script> |
- test(function() { |
- assert_equals(parseInt(getComputedStyle(target).left), 50, 'left offset'); // Should be linearly interpolated |
- }, "Check that explicitly specified timing functions in neutral keyframes override default"); |
-</script> |