Closed
Bug 1313034
Opened 8 years ago
Closed 8 years ago
ImmutableBinding of "ES-6" not work in loop "for-in"
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 449811
People
(Reporter: i.priladnyh, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0
Build ID: 20161019084923
Steps to reproduce:
Im run code:
let o = { a:1, s:2, d:3, f:4, g:5, h:6};
for(let i in o){
setTimeout(function(){
alert(i)
}, 0);
}
Actual results:
That code always alerting 'h' symbol.
Expected results:
Should be alerting sequence of all keys ('a', 's', 'd', 'f', 'g', 'h')
Comment 1•8 years ago
|
||
dupe of bug 449811 and it's fixed in bug 1263355 (firefox 51).
Status: UNCONFIRMED → RESOLVED
Closed: 8 years ago
Component: Untriaged → JavaScript Engine
Product: Firefox → Core
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•