Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: LayoutTests/virtual/stable/animations-unprefixed/animation-events-prefixed-04.html

Issue 1300093003: [bindings] Make all CustomEvent.initCustomEvent arguments non-optional and remove custom binding. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/virtual/stable/animations-unprefixed/animation-events-prefixed-04.html
diff --git a/LayoutTests/virtual/stable/animations-unprefixed/animation-events-prefixed-04.html b/LayoutTests/virtual/stable/animations-unprefixed/animation-events-prefixed-04.html
index d8748aeff022c52556448a2e4df3dc3811ae9514..0e1913cee30224edd513959d0893957c2e2d6cf8 100644
--- a/LayoutTests/virtual/stable/animations-unprefixed/animation-events-prefixed-04.html
+++ b/LayoutTests/virtual/stable/animations-unprefixed/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>

Powered by Google App Engine
This is Rietveld 408576698