| Index: third_party/WebKit/LayoutTests/animations/delay-start-event.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/delay-start-event.html b/third_party/WebKit/LayoutTests/animations/delay-start-event.html
|
| index 18cef0ff49850680d5eca7ab35712f7d03a5eacf..835f885e6921139ddbc2b401ec9ebf225d653b1b 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/delay-start-event.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/delay-start-event.html
|
| @@ -10,22 +10,22 @@
|
| margin-bottom: 10px;
|
| }
|
| .animated {
|
| - -webkit-animation: test 1s linear;
|
| + animation: test 1s linear;
|
| animation: test 1s linear;
|
| }
|
| #negative-delay {
|
| - -webkit-animation-delay: -500ms;
|
| + animation-delay: -500ms;
|
| animation-delay: -500ms;
|
| }
|
| #zero-delay {
|
| - -webkit-animation-delay: 0ms;
|
| + animation-delay: 0ms;
|
| animation-delay: 0ms;
|
| }
|
| #positive-delay {
|
| - -webkit-animation-delay: 500ms;
|
| + animation-delay: 500ms;
|
| animation-delay: 500ms;
|
| }
|
| - @-webkit-keyframes test {
|
| + @keyframes test {
|
| from { left: 100px; }
|
| to { left: 300px; }
|
| }
|
| @@ -45,7 +45,7 @@
|
| requestAnimationFrame(function(t) {
|
| ['negative-delay', 'zero-delay', 'positive-delay'].forEach(function(id) {
|
| var target = document.getElementById(id);
|
| - target.addEventListener('webkitAnimationStart', onStartEventFired);
|
| + target.addEventListener('animationstart', onStartEventFired);
|
| target.classList.add('animated');
|
| });
|
| requestAnimationFrame(function() {
|
|
|