| Index: third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-02.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-02.html b/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-02.html
|
| index 6bfb62fa7eb36251365fa8b6f243bc8ac6ec3f36..47917c51026d747aaa5c52e8d5ad85145e28f182 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-02.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-02.html
|
| @@ -13,10 +13,10 @@
|
| height: 100px;
|
| width: 100px;
|
| background-color: blue;
|
| - -webkit-animation-duration: 1s;
|
| - -webkit-animation-timing-function: linear;
|
| - -webkit-animation-name: anim;
|
| - -webkit-animation-fill-mode: forwards;
|
| + animation-duration: 1s;
|
| + animation-timing-function: linear;
|
| + animation-name: anim;
|
| + animation-fill-mode: forwards;
|
| }
|
| @keyframes anim {
|
| from { left: 50px; }
|
| @@ -26,7 +26,7 @@
|
| from { left: 150px; }
|
| to { left: 2500px; }
|
| }
|
| - @-webkit-keyframes anim {
|
| + @keyframes anim {
|
| from { left: 200px; }
|
| to { left: 100px; }
|
| }
|
|
|