bug1473830.js (254B)
1 y = []; 2 y.forEach(function() {}); 3 4 x = []; 5 for (var i = 0; i < 100; ++i) { 6 x.push(undefined, 1); 7 } 8 x.sort(); 9 x.reverse(); 10 11 x.forEach(function(j) { 12 "use strict"; 13 assertEq(this, 4); 14 if (j) { 15 x.forEach(function(z) { }); 16 } 17 }, 4);