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

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

var g = newGlobal();
g.debuggeeGlobal = this;
g.eval("(" + function() {
    oomAfterAllocations(100);
    var dbg = Debugger(debuggeeGlobal);
    dbg.onEnterFrame = function(frame) {}
} + ")()");