bug847425.js (399B)
1 // |jit-test| allow-oom; allow-unhandlable-oom; skip-if: getBuildConfiguration("android") 2 // Disabled on Android due to harness problems (Bug 1532654) 3 4 gcparam("maxBytes", gcparam("gcBytes") + 4*1024); 5 var max = 400; 6 function f(b) { 7 if (b) { 8 f(b - 1); 9 } else { 10 g = { 11 apply:function(x,y) { } 12 }; 13 } 14 g.apply(null, arguments); 15 } 16 f(max - 1);