diff options
Diffstat (limited to '')
-rw-r--r-- | js/src/jit-test/tests/auto-regress/bug1479076.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/auto-regress/bug1479076.js b/js/src/jit-test/tests/auto-regress/bug1479076.js new file mode 100644 index 0000000000..d3d5f9d6e2 --- /dev/null +++ b/js/src/jit-test/tests/auto-regress/bug1479076.js @@ -0,0 +1,6 @@ +fullcompartmentchecks(true); +var dbg = new Debugger(); +var g = newGlobal({newCompartment: true}); +g.eval("function f(){}"); +dbg.addDebuggee(g); +dbg.findScripts(); |