summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-onNewGlobalObject-13.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/debug/Debugger-onNewGlobalObject-13.js')
-rw-r--r--js/src/jit-test/tests/debug/Debugger-onNewGlobalObject-13.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/Debugger-onNewGlobalObject-13.js b/js/src/jit-test/tests/debug/Debugger-onNewGlobalObject-13.js
new file mode 100644
index 0000000000..86cb252c8c
--- /dev/null
+++ b/js/src/jit-test/tests/debug/Debugger-onNewGlobalObject-13.js
@@ -0,0 +1,18 @@
+// onNewGlobalObject handlers receive the correct Debugger.Object instances.
+
+var dbg = new Debugger;
+
+var gw = null;
+dbg.onNewGlobalObject = function (global) {
+ assertEq(arguments.length, 1);
+ assertEq(this, dbg);
+ gw = global;
+};
+var g = newGlobal({newCompartment: true});
+assertEq(typeof gw, 'object');
+assertEq(dbg.addDebuggee(g), gw);
+
+// The Debugger.Objects passed to onNewGlobalObject are the global itself
+// without any cross-compartment wrappers.
+// NOTE: They also ignore any WindowProxy that may be associated with global.
+assertEq(gw.unwrap(), gw);