blob: 475ae533ccf7c94a55e0db827c4044f49406d1ed (
plain)
1
2
3
4
5
6
7
8
9
|
// |reftest| skip-if(!xulRuntime.shell) -- needs Debugger
let g = newGlobal({ newCompartment: true });
let dbg = new Debugger(g);
dbg.memory.trackingAllocationSites = true;
g.createExternalArrayBuffer(64);
if (typeof reportCompare === 'function')
reportCompare(true, true);
|