Issue #2762 - Remove SVGZoomEvent interface.

Resolves #2762
This commit is contained in:
Moonchild 2025-06-24 12:18:13 +02:00 committed by roytam1
commit 1c8e994b65
17 changed files with 6 additions and 319 deletions

View file

@ -401,13 +401,6 @@ const kEventConstructors = {
},
chromeOnly: true,
},
SVGZoomEvent: { create: function (aName, aProps) {
var e = document.createEvent("svgzoomevent");
e.initUIEvent(aName, aProps.bubbles, aProps.cancelable,
aProps.view, aProps.detail);
return e;
},
},
TCPSocketErrorEvent: { create: function(aName, aProps) {
return new TCPSocketErrorEvent(aName, aProps);
},