| Index: third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html b/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html
|
| index 3f3ecdaec2580dff7800dc764123d5649db6e731..333297f3d5654ca70e0892d1bf7e977950486953 100644
|
| --- a/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html
|
| +++ b/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html
|
| @@ -21,10 +21,10 @@
|
| }
|
|
|
| .animating {
|
| - -webkit-animation: spin 2s infinite linear;
|
| + animation: spin 2s infinite linear;
|
| }
|
|
|
| - @-webkit-keyframes spin {
|
| + @keyframes spin {
|
| from { transform: rotate(90deg); }
|
| to { transform: rotate(360deg); }
|
| }
|
| @@ -38,7 +38,7 @@
|
| function runTest()
|
| {
|
| var box = document.getElementById('to-animate');
|
| - box.addEventListener('webkitAnimationStart', animationStarted, false);
|
| + box.addEventListener('animationstart', animationStarted, false);
|
| box.className = 'animating box';
|
| }
|
|
|
|
|