diff options
Diffstat (limited to 'js/src/jit-test/tests/sharedbuf/sab-gating.js')
-rw-r--r-- | js/src/jit-test/tests/sharedbuf/sab-gating.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/sharedbuf/sab-gating.js b/js/src/jit-test/tests/sharedbuf/sab-gating.js new file mode 100644 index 000000000..4ecd13ddd --- /dev/null +++ b/js/src/jit-test/tests/sharedbuf/sab-gating.js @@ -0,0 +1,8 @@ +// Check gating of shared memory features in plain js (bug 1231338). + +// Need this testing function to continue. +if (!this.sharedMemoryEnabled) + quit(0); + +assertEq(sharedMemoryEnabled(), !!this.SharedArrayBuffer); +assertEq(sharedMemoryEnabled(), !!this.Atomics); |