| Index: third_party/WebKit/LayoutTests/animations/animation-direction-reverse-timing-functions.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/animation-direction-reverse-timing-functions.html b/third_party/WebKit/LayoutTests/animations/animation-direction-reverse-timing-functions.html
|
| index f7eceb171c0bd5114eb30a16a535b97949ee8b86..57a075d1dc79f03bcf0ed80845035d1ca74b6136 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/animation-direction-reverse-timing-functions.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/animation-direction-reverse-timing-functions.html
|
| @@ -1,7 +1,7 @@
|
| <!doctype html>
|
| <html lang="en">
|
| <head>
|
| - <title>Test of -webkit-animation-direction timing functions</title>
|
| + <title>Test of animation-direction timing functions</title>
|
| <style>
|
| body {
|
| margin: 0;
|
| @@ -14,34 +14,34 @@
|
| height: 50px;
|
| width: 250px;
|
| margin-bottom: 10px;
|
| - -webkit-animation-duration: 2s;
|
| - -webkit-animation-timing-function: ease; /* ease is good for testing because it is not symmetric */
|
| - -webkit-animation-iteration-count: 4;
|
| + animation-duration: 2s;
|
| + animation-timing-function: ease; /* ease is good for testing because it is not symmetric */
|
| + animation-iteration-count: 4;
|
| }
|
|
|
| .move1 {
|
| - -webkit-animation-name: move1;
|
| + animation-name: move1;
|
| background-color: blue;
|
| color: white;
|
| }
|
|
|
| .normal {
|
| - -webkit-animation-direction: normal;
|
| + animation-direction: normal;
|
| }
|
|
|
| .alternate {
|
| - -webkit-animation-direction: alternate;
|
| + animation-direction: alternate;
|
| }
|
|
|
| .reverse {
|
| - -webkit-animation-direction: reverse;
|
| + animation-direction: reverse;
|
| }
|
|
|
| .alternate-reverse {
|
| - -webkit-animation-direction: alternate-reverse;
|
| + animation-direction: alternate-reverse;
|
| }
|
|
|
| - @-webkit-keyframes move1 {
|
| + @keyframes move1 {
|
| from { left: 0px; }
|
| to { left: 200px; }
|
| }
|
|
|