Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Cannot Reproduce
-
1.1.1
-
None
-
None
-
Firefox v1.0.7
Description
I get a strange behavior when getting attribMap name in cookie.js (line 103)
The behavior is fixed when I replace the line
for (var name in attribMap)
{
var value = attribMap[name];
by
for (var i=0;i<attribMap.length;i++)
{
var name = attribMap[i];
var value = attribMap[name];
In some case I got the "contains" method in name in the fist case ??
Don't find any issue in bugzilla for the for in statement in javascript, but I had other strange issue on this last version of Firefox/Javascript and Firefox plugin installed as JavaScript debugger.