summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/js/script-tests/cyclic-ref-toString.js
blob: 0e002ddbcaa5bd265827578dbb2196fc344ea3c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
description(
"This will test Array.toString with circular references.  If an element contains a reference to itself or one of its children (at any depth) contains a reference to it, it will be skipped. This can result in either a trailing ',' (if the self reference is at the end of the array) or ',,' if the self reference is contained at some mid point in the array."
);

var ary1=[1,2];
ary1.push(ary1);
shouldBe("ary1.toString()", "'1,2,'");

ary1=[1,2];
var ary2=[3,4];
ary1.push(ary2);
ary2.push(ary1);
shouldBe("ary1.toString()", "'1,2,3,4,'");

ary1.push(5);
shouldBe("ary1.toString()", "'1,2,3,4,,5'");