yslowUnload: function (event) {
var fbcontext,
fbCtx = typeof FirebugContext !== 'undefined' ?
FirebugContext : Firebug.currentContext,
win = event.currentTarget,
now = Number(new Date());
// fire onUnload event.
// unload event from another browser tab.
// don't peel or update status bar, just save the page load time and return.
if (win !== fbCtx.window) {
fbcontext = TabWatcher.getContextByWindow(win);
} else {
fbcontext = fbCtx;
}
There is another issue as well, Firebug.InfoTip.populateImageInfoTip is not defined:
showInfoTip: function (infoTip, target, x, y) {
if (false && target.nodeName === "A" && target.rel && (target.rel === 'image' || target.rel === 'cssimage')) {
return Firebug.InfoTip.populateImageInfoTip(infoTip, target.href);
}
return false;
},