summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug1242111.js
blob: 4b365ad5f5f18a33ff15bf7ff778cd204ab09d95 (plain)
1
2
3
4
5
6
7
8
9
10
11
// |jit-test| allow-oom

if (!('oomAfterAllocations' in this))
  quit();

var g = newGlobal();
g.debuggeeGlobal = [];
g.eval("(" + function() {
    oomAfterAllocations(57);
    Debugger(debuggeeGlobal).onEnterFrame = function() {}
} + ")()");