summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-debuggees-09.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/debug/Debugger-debuggees-09.js')
-rw-r--r--js/src/jit-test/tests/debug/Debugger-debuggees-09.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/Debugger-debuggees-09.js b/js/src/jit-test/tests/debug/Debugger-debuggees-09.js
new file mode 100644
index 0000000000..bb7fb046a7
--- /dev/null
+++ b/js/src/jit-test/tests/debug/Debugger-debuggees-09.js
@@ -0,0 +1,21 @@
+// If hasDebuggee(x) is false, removeDebuggee(x) does nothing.
+
+var dbg = new Debugger;
+
+function check(obj) {
+ // If obj is something we could never debug, hasDebuggee(obj) is false.
+ assertEq(dbg.hasDebuggee(obj), false);
+
+ // If hasDebuggee(x) is false, removeDebuggee(x) does nothing.
+ assertEq(dbg.removeDebuggee(obj), undefined);
+}
+
+// global objects which happen not to be debuggees at the moment
+var g1 = newGlobal('same-compartment');
+check(g1);
+
+// objects in a compartment that is already debugging us
+var g2 = newGlobal({newCompartment: true});
+g2.parent = this;
+g2.eval("var dbg = new Debugger(parent);");
+check(g2);