| Index: third_party/WebKit/LayoutTests/animations/keyframe-timing-functions.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions.html b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions.html
|
| index b82be646897f150d0881ce9f7b9fa95e5c438cdc..7e85d318a7484e992e70636933f182b8209e40e0 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions.html
|
| @@ -19,14 +19,14 @@
|
| 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: linear;
|
| + animation-timing-function: linear;
|
| }
|
| 100% {
|
| left: 600px;
|
|
|