Bug 1222917 part 2 - Add test. r=me

This commit is contained in:
Jan de Mooij 2016-02-27 17:32:48 +01:00
parent f18bfe253a
commit f7a1f35f38

View File

@ -0,0 +1,6 @@
function f() {
var x = [];
for (var i=0; i<10; i++)
x.length = x;
}
f();