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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframe-timing-functions3.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/keyframe-timing-functions3.html
diff --git a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions3.html b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions3.html
deleted file mode 100644
index 316261e814ac1eaa3ca07f31128c9d647f826809..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions3.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<style>
-.box {
- position: absolute;
- height: 100px;
- width: 100px;
- background-color: blue;
- animation-duration: 1s;
-}
-#multipleUsesFirst {
- animation-name: multipleUsesFirst;
-}
-#inheritUsesParent {
- animation-name: inheritUsesParent;
- animation-timing-function: linear;
- top: 110px;
-}
-#parent {
- animation-timing-function: step-end;
-}
-@keyframes multipleUsesFirst {
- 0% {
- left: 0px;
- animation-timing-function: step-end, ease;
- }
- 100% { left: 400px; }
-}
-@keyframes inheritUsesParent {
- 0% {
- left: 0px;
- animation-timing-function: inherit;
- }
- 100% { left: 400px; }
-}
-</style>
-<script src="resources/animation-test-helpers.js"></script>
-<script>
- const expectedValues = [
- // [time, element-id, property, expected-value, tolerance]
- [0.2, "multipleUsesFirst", "left", 0, 0],
- [0.2, "inheritUsesParent", "left", 0, 0],
- ];
- runAnimationTest(expectedValues);
-</script>
-Tests whether timing functions inside keyframes are respected.
-<div class="box" id="multipleUsesFirst"></div>
-<div id="parent">
- <div class="box" id="inheritUsesParent"></div>
-</div>
-<div id="result"></div>

Powered by Google App Engine
This is Rietveld 408576698