| Index: LayoutTests/animations/animation-events-prefixed-04.html
|
| diff --git a/LayoutTests/animations/animation-events-prefixed-04.html b/LayoutTests/animations/animation-events-prefixed-04.html
|
| index d8748aeff022c52556448a2e4df3dc3811ae9514..0e1913cee30224edd513959d0893957c2e2d6cf8 100644
|
| --- a/LayoutTests/animations/animation-events-prefixed-04.html
|
| +++ b/LayoutTests/animations/animation-events-prefixed-04.html
|
| @@ -44,13 +44,13 @@ Tests that custom events with prefixed animations names are correctly dispatched
|
| </body>
|
| <script>
|
| var custom = document.createEvent('CustomEvent');
|
| - custom.initCustomEvent('webkitAnimationStart', true, true);
|
| + custom.initCustomEvent('webkitAnimationStart', true, true, null);
|
| document.dispatchEvent(custom);
|
| custom = document.createEvent('CustomEvent');
|
| - custom.initCustomEvent('webkitAnimationIteration', true, true);
|
| + custom.initCustomEvent('webkitAnimationIteration', true, true, null);
|
| document.dispatchEvent(custom);
|
| custom = document.createEvent('CustomEvent');
|
| - custom.initCustomEvent('webkitAnimationEnd', true, true);
|
| + custom.initCustomEvent('webkitAnimationEnd', true, true, null);
|
| document.dispatchEvent(custom);
|
| </script>
|
| </html>
|
|
|