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

Unified Diff: third_party/WebKit/LayoutTests/animations/multiple-animations-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/multiple-animations-timing-function.html
diff --git a/third_party/WebKit/LayoutTests/animations/multiple-animations-timing-function.html b/third_party/WebKit/LayoutTests/animations/multiple-animations-timing-function.html
deleted file mode 100644
index 3361bbb6b4b6028faeba50a6529144368feb16d3..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/multiple-animations-timing-function.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<html>
-<head>
- <style>
- #box {
- position: relative;
- height: 100px;
- width: 100px;
- margin: 20px;
- background-color: red;
- animation:
- horizontal 2s ease-in 1 alternate,
- vertical 2s ease-out 1 alternate;
- }
-
- @keyframes horizontal {
- from { left: 0px; }
- to { left: 200px; }
- }
-
- @keyframes vertical {
- from { top: 0px; }
- to { top: 200px; }
- }
- </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.5, "box", "left", 18, 10],
- [1.5, "box", "left", 124, 10],
- [0.5, "box", "top", 75, 10],
- [1.5, "box", "top", 181, 10],
- ];
-
- runAnimationTest(expectedValues);
- </script>
-</head>
-<body>
- <div id="box"></div>
- <div id="result"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698