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

Unified Diff: third_party/WebKit/LayoutTests/animations/timing-functions-neutral-keyframe.html

Issue 2979503002: Move animation timing tests to 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/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>

Powered by Google App Engine
This is Rietveld 408576698