diff options
Diffstat (limited to 'js/src/jit-test/tests/auto-regress/bug1538542-2.js')
-rw-r--r-- | js/src/jit-test/tests/auto-regress/bug1538542-2.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/auto-regress/bug1538542-2.js b/js/src/jit-test/tests/auto-regress/bug1538542-2.js new file mode 100644 index 0000000000..3efc05ceb6 --- /dev/null +++ b/js/src/jit-test/tests/auto-regress/bug1538542-2.js @@ -0,0 +1,13 @@ +var lfOffThreadGlobal = newGlobal(); +nukeAllCCWs(); +const thisGlobal = this; +const otherGlobalNewCompartment = newGlobal({ + newCompartment: false +}); +let { transplant } = transplantableObject(); + +// Just don't crash. +try { + transplant(otherGlobalNewCompartment); + transplant(thisGlobal); +} catch {} |