After getting frustrated with Firefox memory leaks, I got
this extension that claims to be a leak monitor. I just recently closed a tab and it reported this:
Code:
[+] [leaked object] (48792d0, http://forums.animesuki.com/clientscript/vbulletin_textedit.js, 2838-2873) = function (e) {
if (e.ctrlKey) {
switch (String.fromCharCode(e.charCode).toLowerCase()) {
case "b":
cmd = "bold";
break;
case "i":
cmd = "italic";
break;
case "u":
cmd = "underline";
break;
default:
return;
}
e.preventDefault();
vB_Editor[this.editorid].apply_format(cmd, false, null);
return false;
} else {
if (e.keyCode == 9) {
var firsticon = fetch_object("rb_iconid_0");
if (firsticon != null) {
firsticon.focus();
} else {
if (fetch_object(this.editorid + "_save") != null) {
fetch_object(this.editorid + "_save").focus();
} else {
if (fetch_object("qr_submit") != null) {
fetch_object("qr_submit").focus();
} else {
return;
}
}
}
e.preventDefault();
}
}
}
[ ] prototype (1f2e658) = [object Object]
Can anyone tell me what this means? How is this object leaked? Can this be the source of my Firefox memory problems? Or are these not the droids I'm looking for?
Thank you...