Simple repro case:
JX.Stratcom.listen('focus', null, JX.log);
In all browsers (except Opera, see below) you'll get a single log with a single event id, but in Firefox it's fired twice.
They are also fired twice on anything *other than* window in Opera 10.6+ (haven't tried earlier) because of the Opera-specific hack in init.js:
if (window.opera) { document_events.push('focus', 'blur'); }
Opera seems to work fine without that hack, so maybe we can just remove it at this point?
(This was a bug we've had sitting around internally since December and I haven't tried to repro recently; I don't have time to look into it again so hoping someone else can give it some attention some day)