| Index: third_party/WebKit/ManualTests/animation-with-transition.html
|
| diff --git a/third_party/WebKit/ManualTests/animation-with-transition.html b/third_party/WebKit/ManualTests/animation-with-transition.html
|
| index 37a758983fc2e0e1be6751f125da11f15752aead..eaff5ed72ecd00c8dfb8b31c471d2702f92ccd38 100644
|
| --- a/third_party/WebKit/ManualTests/animation-with-transition.html
|
| +++ b/third_party/WebKit/ManualTests/animation-with-transition.html
|
| @@ -10,17 +10,17 @@
|
| width: 200px;
|
| height: 200px;
|
| background-color: #696;
|
| - -webkit-transition: left 5s, top 5s;
|
| + transition: left 5s, top 5s;
|
| }
|
|
|
| .animate {
|
| - -webkit-animation-name: simple;
|
| - -webkit-animation-duration: 2s;
|
| - -webkit-animation-timing-function: linear;
|
| - -webkit-animation-fill-mode: backwards;
|
| + animation-name: simple;
|
| + animation-duration: 2s;
|
| + animation-timing-function: linear;
|
| + animation-fill-mode: backwards;
|
| }
|
|
|
| - @-webkit-keyframes simple {
|
| + @keyframes simple {
|
| 50% {
|
| left: 300px;
|
| }
|
|
|