summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-findScripts-10.js
blob: 6b8e372d2199289a447fadbb6dd883412950a0b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Specifying a non-debuggee global in a Debugger.prototype.findScripts query should
// cause the query to return no scripts.

var g1 = newGlobal();
g1.eval('function f(){}');

var g2 = newGlobal();
g2.eval('function g(){}');

var dbg = new Debugger(g1);
assertEq(dbg.findScripts({global:g1}).length > 0, true);
assertEq(dbg.findScripts({global:g2}).length, 0);
assertEq(dbg.findScripts({global:this}).length, 0);