| Index: third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-transform.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-transform.html b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-transform.html
|
| deleted file mode 100644
|
| index 943e24ef63ab97a7b45ef9e9f9adcf06fe0c7bc0..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-transform.html
|
| +++ /dev/null
|
| @@ -1,62 +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% {
|
| - transform: translateX(0);
|
| - animation-timing-function: ease-out;
|
| - }
|
| - 10% {
|
| - transform: translateX(100px);
|
| - animation-timing-function: linear;
|
| - }
|
| - 90% {
|
| - transform: translateX(500px);
|
| - animation-timing-function: ease-in;
|
| - }
|
| - 100% {
|
| - transform: translateX(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", "transform.4", 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>
|
|
|