| Index: third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html b/third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html
|
| index de20132cb19f548f1c8b1d525a74b407817a3147..c66fd7b14ef7427eba94b2c0578ff6e06c113044 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html
|
| @@ -1,10 +1,10 @@
|
| <!doctype html>
|
| <style>
|
| .animated {
|
| - -webkit-animation: test 10ms;
|
| - -webkit-animation-delay: -10ms;
|
| + animation: test 10ms;
|
| + animation-delay: -10ms;
|
| }
|
| -@-webkit-keyframes test {
|
| +@keyframes test {
|
| 0% {}
|
| }
|
| </style>
|
| @@ -20,7 +20,7 @@ onload = function() {
|
| // CSS Animation and Transition events to not be fired on the subseuquent
|
| // animation-frame timing update.
|
| test.classList.add('animated');
|
| - test.addEventListener('webkitAnimationStart', function() {
|
| + test.addEventListener('animationstart', function() {
|
| document.documentElement.textContent = 'PASS';
|
| if (window.testRunner)
|
| testRunner.notifyDone();
|
|
|