Example code:
for(var x = new Array(31), i = 0, il = x.length;i<il;i++) {
console.clear();
console.log(i);
}
console.clear(); //this call should completely clear console
in FF will output 30, in IE 9 blank (IE correct)
However if I will call console.clear manually after this code will
finish work - all good.
______________________
Another example:
for(var x = new Array(34), i = 0, il = x.length;i<il;i++) {
console.clear();
console.log(i);
}
Should be just one line with 33, but instead in FF we have 30, 31, 32,
33
If I'm using 30 and below when creating new Array - all is fine.
_______________________
I'm using console.clear in my function so it will be nice if this
issue will be fixed.
Thanks,
Sergey
--
You received this message because you are subscribed to the Google Groups
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/firebug?hl=en.