| 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
|
| index ff9adcf798ebf04abba307abecb6d2ca1052b9df..3361bbb6b4b6028faeba50a6529144368feb16d3 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/multiple-animations-timing-function.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/multiple-animations-timing-function.html
|
| @@ -7,17 +7,17 @@
|
| width: 100px;
|
| margin: 20px;
|
| background-color: red;
|
| - -webkit-animation:
|
| + animation:
|
| horizontal 2s ease-in 1 alternate,
|
| vertical 2s ease-out 1 alternate;
|
| }
|
|
|
| - @-webkit-keyframes horizontal {
|
| + @keyframes horizontal {
|
| from { left: 0px; }
|
| to { left: 200px; }
|
| }
|
|
|
| - @-webkit-keyframes vertical {
|
| + @keyframes vertical {
|
| from { top: 0px; }
|
| to { top: 200px; }
|
| }
|
|
|