function f(
param1,
param2,
param3){...
}
In FF you would get something like:
f.toString();
function(param1, param2, param3){...
}in IE:
function f(
param1,
param2,
param3){...
}
In IE, this breaks function.argumentNames() in prototype.js, so don't break the parameter list into multiple lines if you are using prototype.js, or until they fix it. Also, notice that FF removes the name of the function in the toString() output.
