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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.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-functions2.html
diff --git a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.html b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.html
deleted file mode 100644
index b1c0e8b3d539d83742f2f2ddfa6ad4deb17c3df3..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
- <style type="text/css" media="screen">
-
- #container {
- position: relative;
- border: 1px solid black;
- height: 100px;
- width: 700px;
- }
-
- #box {
- position: absolute;
- height: 100px;
- width: 100px;
- background-color: blue;
- animation-name: move;
- animation-duration: 1.5s;
- }
-
- @keyframes move {
- 0% {
- left: 0;
- animation-timing-function: ease-out;
- }
- 10% {
- left: 100px;
- animation-timing-function: linear;
- }
- 90% {
- left: 500px;
- animation-timing-function: ease-in;
- }
- 100% {
- left: 600px;
- }
- }
- </style>
- <script src="resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script>
- <script type="text/javascript" charset="utf-8">
-
- const expectedValues = [
- // [time, element-id, property, expected-value, tolerance]
- [0.75, "box", "left", 300, 20],
- ];
-
- runAnimationTest(expectedValues);
- </script>
-</head>
-<body>
-
- Tests whether timing functions inside keyframes are respected.
-<div id="container">
- <div id="box"></div>
-</div>
-<div id="result">
-</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698