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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/event-creation.html

Issue 2821863002: Remove non-standard document.createEvent('WebKitAnimationEvent'). (Closed)
Patch Set: . Created 3 years, 8 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: third_party/WebKit/LayoutTests/fast/events/event-creation.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/event-creation.html b/third_party/WebKit/LayoutTests/fast/events/event-creation.html
index e363cdf6f8a32e671a6874d861e4dc6f5dcd328a..0e2db8b88dcaa76787990fc222d7dadac99badbd 100644
--- a/third_party/WebKit/LayoutTests/fast/events/event-creation.html
+++ b/third_party/WebKit/LayoutTests/fast/events/event-creation.html
@@ -135,11 +135,6 @@
shouldBeTrue("document.createEvent('TransitionEvent') instanceof window.Event");
shouldBeTrue("document.createEvent('TransitionEvent').constructor === window.TransitionEvent");
- // WebKitAnimationEvent
- shouldBeTrue("document.createEvent('WebKitAnimationEvent') instanceof window.WebKitAnimationEvent");
- shouldBeTrue("document.createEvent('WebKitAnimationEvent') instanceof window.Event");
- shouldBeTrue("document.createEvent('WebKitAnimationEvent').constructor === window.WebKitAnimationEvent");
-
// WebKitTransitionEvent
shouldBeTrue("document.createEvent('WebKitTransitionEvent') instanceof window.WebKitTransitionEvent");
shouldBeTrue("document.createEvent('WebKitTransitionEvent') instanceof window.Event");

Powered by Google App Engine
This is Rietveld 408576698