diff options
Diffstat (limited to 'js/src/jit-test/tests/generators/bug1501722.js')
-rw-r--r-- | js/src/jit-test/tests/generators/bug1501722.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/generators/bug1501722.js b/js/src/jit-test/tests/generators/bug1501722.js new file mode 100644 index 0000000000..9ff2724a9f --- /dev/null +++ b/js/src/jit-test/tests/generators/bug1501722.js @@ -0,0 +1,11 @@ +// |jit-test| skip-if: !('oomTest' in this) + +ignoreUnhandledRejections(); + +(function () { + g = newGlobal({newCompartment: true}); + g.parent = this; + g.eval("(function() { var dbg = Debugger(parent); dbg.onEnterFrame = function() {} } )") + ``; + oomTest(async function() {}, {expectExceptionOnFailure: false}); +})() |