Closed Bug 866318 Opened 11 years ago Closed 7 years ago

console.log always prints twice on fennec

Categories

(Add-on SDK Graveyard :: General, defect, P2)

x86
macOS
defect

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
Assignee: nobody → jsantell
Confirmed still an issue after merging in using devtools console (bug 850296)
Whiteboard: [mentor=jsantell@mozilla.com]
Mentor: jsantell
Whiteboard: [mentor=jsantell@mozilla.com]
Unassigning myself from bugs I haven't gotten around to
Assignee: jsantell → nobody
Hey Jeff, were you using cfx here?
Flags: needinfo?(jgriffiths)
(In reply to Erik Vold [:erikvold] (please needinfo? me) from comment #3)
> Hey Jeff, were you using cfx here?

Yes.
Flags: needinfo?(jgriffiths)
https://bugzilla.mozilla.org/show_bug.cgi?id=1399562
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → INCOMPLETE
You need to log in before you can comment on or make changes to this bug.