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

Unified Diff: third_party/WebKit/LayoutTests/animations/implicit-keyframe-with-timing-function.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/implicit-keyframe-with-timing-function.html
diff --git a/third_party/WebKit/LayoutTests/animations/implicit-keyframe-with-timing-function.html b/third_party/WebKit/LayoutTests/animations/implicit-keyframe-with-timing-function.html
deleted file mode 100644
index c5396e2f29855b51e6e7250378e648d5199557fc..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/implicit-keyframe-with-timing-function.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<div id="target">Test target</div>
-<script>
-var target = document.getElementById('target');
-var test1 = async_test('Timing function should apply even when keyframes are not specified');
-target.addEventListener('animationstart', function() {
- test1.step(function() {
- assert_equals(getComputedStyle(target).left, '1000px');
- });
- target.remove();
- test1.done();
-});
-</script>
-<style>
-#target {
- animation: anim 1s -0.25s step-start paused;
- left: 0px;
-}
-@keyframes anim {
- 50% { left: 1000px; }
-}
-</style>

Powered by Google App Engine
This is Rietveld 408576698