diff options
Diffstat (limited to 'js/src/tests/non262/ShadowRealms/interrupt-request.js')
-rw-r--r-- | js/src/tests/non262/ShadowRealms/interrupt-request.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/tests/non262/ShadowRealms/interrupt-request.js b/js/src/tests/non262/ShadowRealms/interrupt-request.js new file mode 100644 index 0000000000..160a861135 --- /dev/null +++ b/js/src/tests/non262/ShadowRealms/interrupt-request.js @@ -0,0 +1,16 @@ +// |reftest| shell-option(--enable-shadow-realms) skip-if(!xulRuntime.shell) + +// Request interrupt from shadow realm evaluation. + +expectExitCode(6); + +new ShadowRealm().evaluate(` + (interruptIf => { + interruptIf(true); + + for (;;) {} // Wait for interrupt. + }); +`)(interruptIf); + +if (typeof reportCompare === 'function') + reportCompare(true, true); |