On Firefox 2.0.0.14, I get the error
"invalid range in character class"
when I try to include MochiKit r1378.
It looks like the problem is on line 57 of LoggingPane?.js, where it says
// name the popup with the base URL for uniqueness
var url = win.location.href.split("?")[0].replace(/[#:\/.><&-%]/g, "_");
var name = uid + "_" + url;
var nwin = win.open("", name, "dependent,resizable,height=200");
I assume that the character class is supposed to include the minus sign; certainly the class [&-%] doesn't make much sense because that would be backwards and would only contain & and % in any case. I think perhaps it should read
// name the popup with the base URL for uniqueness
var url = win.location.href.split("?")[0].replace(/[#:\/.><&%\-]/g, "_");
var name = uid + "_" + url;
var nwin = win.open("", name, "dependent,resizable,height=200");
or similar.