| 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
|
| index aa73cc0adda5483f2b68f381f2b3fc7366f317b5..b1c0e8b3d539d83742f2f2ddfa6ad4deb17c3df3 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.html
|
| @@ -16,22 +16,22 @@
|
| height: 100px;
|
| width: 100px;
|
| background-color: blue;
|
| - -webkit-animation-name: move;
|
| - -webkit-animation-duration: 1.5s;
|
| + animation-name: move;
|
| + animation-duration: 1.5s;
|
| }
|
|
|
| - @-webkit-keyframes move {
|
| + @keyframes move {
|
| 0% {
|
| left: 0;
|
| - -webkit-animation-timing-function: ease-out;
|
| + animation-timing-function: ease-out;
|
| }
|
| 10% {
|
| left: 100px;
|
| - -webkit-animation-timing-function: linear;
|
| + animation-timing-function: linear;
|
| }
|
| 90% {
|
| left: 500px;
|
| - -webkit-animation-timing-function: ease-in;
|
| + animation-timing-function: ease-in;
|
| }
|
| 100% {
|
| left: 600px;
|
|
|