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