| Index: third_party/WebKit/LayoutTests/compositing/layer-creation/animation-overlap-with-children.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/layer-creation/animation-overlap-with-children.html b/third_party/WebKit/LayoutTests/compositing/layer-creation/animation-overlap-with-children.html
|
| index ad0315da0d8e377fe45749edc14578b9fb6e17b1..3681befb15cfca90e73cca9ee87d8d96bd412f12 100644
|
| --- a/third_party/WebKit/LayoutTests/compositing/layer-creation/animation-overlap-with-children.html
|
| +++ b/third_party/WebKit/LayoutTests/compositing/layer-creation/animation-overlap-with-children.html
|
| @@ -5,7 +5,7 @@
|
| <style>
|
|
|
| .animating {
|
| - -webkit-animation: slide 10s alternate linear infinite;
|
| + animation: slide 10s alternate linear infinite;
|
| }
|
|
|
| .container {
|
| @@ -47,7 +47,7 @@
|
| transform: translateZ(0);
|
| }
|
|
|
| - @-webkit-keyframes slide {
|
| + @keyframes slide {
|
| from { transform: translateX(0px); }
|
| to { transform: translateX(100px); }
|
| }
|
|
|