summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/generators/bug1501722.js
blob: 9ff5df17921466ced1b96fa5062a8a4e6a8c3a37 (plain)
1
2
3
4
5
6
7
8
9
ignoreUnhandledRejections();

(function () {
    g = newGlobal({newCompartment: true});
    g.parent = this;
    g.eval("(function() { var dbg = Debugger(parent); dbg.onEnterFrame = function() {} } )")
    ``;
    oomTest(async function() {}, {expectExceptionOnFailure: false});
})()