1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-05 12:44:11 +01:00

Dispatch via the PresShell less often. Closes issue #154.

This commit is contained in:
Kris Maglione
2010-12-01 14:54:10 -05:00
parent 437cd802eb
commit e461ca9b95

View File

@@ -362,16 +362,13 @@ const Events = Module("events", {
dispatch: Class.memoize(function ()
util.haveGecko("2b")
? function (target, event) {
if (target instanceof Window)
target = target.document;
if (target instanceof Document)
target = target.documentElement;
dactyl.assert(target);
// This causes a crash on Gecko<2.0, it seems.
target.ownerDocument.defaultView
.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindowUtils)
.dispatchDOMEventViaPresShell(target, event, true)
if (target instanceof Element)
// This causes a crash on Gecko<2.0, it seems.
(target.ownerDocument || target.document || target).defaultView
.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindowUtils)
.dispatchDOMEventViaPresShell(target, event, true)
else
target.dispatchEvent(event);
}
: function (target, event) target.dispatchEvent(event)),