Index: LayoutTests/animations/animation-events-unprefixed-04.html |
diff --git a/LayoutTests/animations/animation-events-unprefixed-04.html b/LayoutTests/animations/animation-events-unprefixed-04.html |
index 09e9136ae132cf8e4a079fa68dea87d63c8135f1..9f858604b6060ac67c9f554f328fa3f8da1c1d52 100644 |
--- a/LayoutTests/animations/animation-events-unprefixed-04.html |
+++ b/LayoutTests/animations/animation-events-unprefixed-04.html |
@@ -44,13 +44,13 @@ Tests that custom events with unprefixed animations names are correctly dispatch |
</body> |
<script> |
var custom = document.createEvent('CustomEvent'); |
- custom.initCustomEvent('animationstart', true, true); |
+ custom.initCustomEvent('animationstart', true, true, null); |
document.dispatchEvent(custom); |
custom = document.createEvent('CustomEvent'); |
- custom.initCustomEvent('animationiteration', true, true); |
+ custom.initCustomEvent('animationiteration', true, true, null); |
document.dispatchEvent(custom); |
custom = document.createEvent('CustomEvent'); |
- custom.initCustomEvent('animationend', true, true); |
+ custom.initCustomEvent('animationend', true, true, null); |
document.dispatchEvent(custom); |
</script> |
</html> |