blob: f9143b9961d261133dee713423225001de80bcca (
plain)
1
2
3
4
5
6
7
8
9
|
// |jit-test| skip-if: !('oomTest' in this)
var c = 0;
var dbg = new Debugger();
oomTest(function () {
if (c++ <= 20) {
newGlobal({newCompartment: true});
}
});
dbg.addAllGlobalsAsDebuggees();
|