diff options
Diffstat (limited to 'js/src/jit-test/tests/debug/bug-1565275.js')
-rw-r--r-- | js/src/jit-test/tests/debug/bug-1565275.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/bug-1565275.js b/js/src/jit-test/tests/debug/bug-1565275.js new file mode 100644 index 0000000000..242bce3a85 --- /dev/null +++ b/js/src/jit-test/tests/debug/bug-1565275.js @@ -0,0 +1,19 @@ +// |jit-test| skip-if: !('oomTest' in this) + +Object.defineProperty(this, "fuzzutils", { + value: { + evaluate: function() {}, + } +}); +var g = newGlobal({ + newCompartment: true +}); +g.parent = this; +g.eval("(" + function() { + var dbg = Debugger(parent); + dbg.onEnterFrame = function(frame) { + frame.onStep = function() {} + } +} + ")()"); +fuzzutils.evaluate(); +oomTest(new Function(), {expectExceptionOnFailure: false}); |