Closed
Bug 866318
Opened 12 years ago
Closed 8 years ago
console.log always prints twice on fennec
Categories
(Add-on SDK Graveyard :: General, defect, P2)
Tracking
(Not tracked)
RESOLVED
INCOMPLETE
People
(Reporter: canuckistani, Unassigned, Mentored)
Details
Code:
let i = 0;
while (i <= 3) {
console.log(i);
i++;
}
Expected Result:
info: double_print: 0
info: double_print: 1
info: double_print: 2
info: double_print: 3
Actual Result:
info: double_print: 0
info: double_print: 0
info: double_print: 1
info: double_print: 1
info: double_print: 2
info: double_print: 2
info: double_print: 3
info: double_print: 3
Priority: -- → P2
Updated•12 years ago
|
Assignee: nobody → jsantell
Comment 1•12 years ago
|
||
Confirmed still an issue after merging in using devtools console (bug 850296)
Updated•11 years ago
|
Whiteboard: [mentor=jsantell@mozilla.com]
Assignee | ||
Updated•11 years ago
|
Mentor: jsantell
Whiteboard: [mentor=jsantell@mozilla.com]
Comment 2•11 years ago
|
||
Unassigning myself from bugs I haven't gotten around to
Assignee: jsantell → nobody
Reporter | ||
Comment 4•11 years ago
|
||
(In reply to Erik Vold [:erikvold] (please needinfo? me) from comment #3)
> Hey Jeff, were you using cfx here?
Yes.
Flags: needinfo?(jgriffiths)
Comment 5•8 years ago
|
||
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → INCOMPLETE
You need to log in
before you can comment on or make changes to this bug.
Description
•