Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review: https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 function testDenseArrayProp()
2 {
3 [].__proto__.x = 1;
4 ({}).__proto__.x = 2;
5 var a = [[],[],[],({}).__proto__];
6 for (var i = 0; i < a.length; ++i)
7 uneval(a[i].x);
8 delete [].__proto__.x;
9 delete ({}).__proto__.x;
10 return "ok";
11 }
12 assertEq(testDenseArrayProp(), "ok");