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

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

Issue 2803603003: Removing support for document.createEvent("ProgressEvent") (Closed)
Patch Set: Rebase Patch 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 1a2c028cb7fd45eb47a29ad2b819afcaefaeaa8e..e363cdf6f8a32e671a6874d861e4dc6f5dcd328a 100644
--- a/third_party/WebKit/LayoutTests/fast/events/event-creation.html
+++ b/third_party/WebKit/LayoutTests/fast/events/event-creation.html
@@ -108,11 +108,6 @@
shouldBeTrue("document.createEvent('PopStateEvent') instanceof window.Event");
shouldBeTrue("document.createEvent('PopStateEvent').constructor === window.PopStateEvent");
- // ProgressEvent
- shouldBeTrue("document.createEvent('ProgressEvent') instanceof window.ProgressEvent");
- shouldBeTrue("document.createEvent('ProgressEvent') instanceof window.Event");
- shouldBeTrue("document.createEvent('ProgressEvent').constructor === window.ProgressEvent");
-
// TextEvent
shouldBeTrue("document.createEvent('TextEvent') instanceof window.TextEvent");
shouldBeTrue("document.createEvent('TextEvent') instanceof window.UIEvent");

Powered by Google App Engine
This is Rietveld 408576698