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

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

Issue 2133983003: Remove SVGZoomEvent interface and onzoom attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 5 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 e08d06bb312d65c6bde3e76b7118cb1f47e35203..7b4365084df2c9f6555934211cd0ecaebfe7fe0d 100644
--- a/third_party/WebKit/LayoutTests/fast/events/event-creation.html
+++ b/third_party/WebKit/LayoutTests/fast/events/event-creation.html
@@ -166,16 +166,6 @@
shouldBeTrue("document.createEvent('SVGEvents') instanceof window.Event");
shouldBeTrue("document.createEvent('SVGEvents').constructor === window.Event");
- // SVGZoomEvent
- shouldBeTrue("document.createEvent('SVGZoomEvent') instanceof window.SVGZoomEvent");
- shouldBeTrue("document.createEvent('SVGZoomEvent') instanceof window.Event");
- shouldBeTrue("document.createEvent('SVGZoomEvent').constructor === window.SVGZoomEvent");
-
- // SVGZoomEvents (SVGZoomEvent alternative)
- shouldBeTrue("document.createEvent('SVGZoomEvents') instanceof window.SVGZoomEvent");
- shouldBeTrue("document.createEvent('SVGZoomEvents') instanceof window.Event");
- shouldBeTrue("document.createEvent('SVGZoomEvents').constructor === window.SVGZoomEvent");
-
// CloseEvent
shouldBeTrue("document.createEvent('CloseEvent') instanceof window.CloseEvent");
shouldBeTrue("document.createEvent('CloseEvent') instanceof window.Event");

Powered by Google App Engine
This is Rietveld 408576698