summaryrefslogtreecommitdiff
path: root/js/src/tests/js1_7/iterable/regress-568056.js
blob: 1f6570d381ed5ed8be9f69a6425af998cd3e7714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/

var BUGNUMBER = 568056;
var summary = "Iterator(obj) must not go up obj's prototype chain";

var foo = {
    z: 9,
};

var bar = {
    __proto__: foo,
    a: 1,
    b: 2,
};

var results = [];
for each (let [key, value] in Iterator(bar))
    results.push(key + ":" + value);

var actual = results.join(';')
var expect = "a:1;b:2";

reportCompare(expect, actual, summary);