| Index: third_party/WebKit/LayoutTests/compositing/animation/animation-compositing.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/animation/animation-compositing.html b/third_party/WebKit/LayoutTests/compositing/animation/animation-compositing.html
|
| index 47ca6172cd2df847b9b489cf6c46212995031caf..89e0f23eb801cf276bc676f2ec96c6633aadf8b5 100644
|
| --- a/third_party/WebKit/LayoutTests/compositing/animation/animation-compositing.html
|
| +++ b/third_party/WebKit/LayoutTests/compositing/animation/animation-compositing.html
|
| @@ -10,10 +10,10 @@
|
| }
|
|
|
| .spinning {
|
| - -webkit-animation: spin 2s infinite linear;
|
| + animation: spin 2s infinite linear;
|
| }
|
|
|
| - @-webkit-keyframes spin {
|
| + @keyframes spin {
|
| from { transform: rotate(0); }
|
| to { transform: rotate(360deg); }
|
| }
|
| @@ -27,7 +27,7 @@
|
| function doTest()
|
| {
|
| var box = document.getElementById('box');
|
| - box.addEventListener('webkitAnimationStart', function() {
|
| + box.addEventListener('animationstart', function() {
|
| if (window.testRunner) {
|
| var layers = window.internals.layerTreeAsText(document);
|
| var result;
|
|
|