diff options
Diffstat (limited to '')
-rw-r--r-- | js/src/jit-test/tests/debug/Source-invisible.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/Source-invisible.js b/js/src/jit-test/tests/debug/Source-invisible.js new file mode 100644 index 0000000000..5c84fa880b --- /dev/null +++ b/js/src/jit-test/tests/debug/Source-invisible.js @@ -0,0 +1,10 @@ +// Looking at ScriptSourceObjects in invisible-to-debugger compartments is okay. + +var gi = newGlobal({ newCompartment: true, invisibleToDebugger: true }); + +var gv = newGlobal({newCompartment: true}); +gi.evaluate('function f() {}', {global: gv}); + +var dbg = new Debugger; +var gvw = dbg.addDebuggee(gv); +gvw.getOwnPropertyDescriptor('f').value.script.source; |