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

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

Issue 2822083002: Remove non-standard document.createEvent('WebKitTransitionEvent'). (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 0e2db8b88dcaa76787990fc222d7dadac99badbd..07d7a6971b509bf023014316f08634fd3eabaac5 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");
- // WebKitTransitionEvent
- shouldBeTrue("document.createEvent('WebKitTransitionEvent') instanceof window.WebKitTransitionEvent");
- shouldBeTrue("document.createEvent('WebKitTransitionEvent') instanceof window.Event");
- shouldBeTrue("document.createEvent('WebKitTransitionEvent').constructor === window.WebKitTransitionEvent");
-
// WheelEvent
shouldBeTrue("document.createEvent('WheelEvent') instanceof window.WheelEvent");
shouldBeTrue("document.createEvent('WheelEvent') instanceof window.MouseEvent");

Powered by Google App Engine
This is Rietveld 408576698