michael@0: /* Bug 614653 - This test .2 seconds with the fix, 20 minutes without. */ michael@0: for (var i = 0; i < 10; ++i) { michael@0: var arr = []; michael@0: var s = "abcdefghijklmnop"; michael@0: for (var j = 0; j < 50000; ++j) { michael@0: s = "<" + s + ">"; michael@0: arr.push(s); michael@0: } michael@0: gc(); michael@0: }