summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/SharedArrayBuffer/prototype/growable/invoked-as-accessor.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/SharedArrayBuffer/prototype/growable/invoked-as-accessor.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/SharedArrayBuffer/prototype/growable/invoked-as-accessor.js b/js/src/tests/test262/built-ins/SharedArrayBuffer/prototype/growable/invoked-as-accessor.js
new file mode 100644
index 0000000000..9a124c9d04
--- /dev/null
+++ b/js/src/tests/test262/built-ins/SharedArrayBuffer/prototype/growable/invoked-as-accessor.js
@@ -0,0 +1,20 @@
+// |reftest| skip -- resizable-arraybuffer is not supported
+// Copyright (C) 2021 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-get-sharedarraybuffer.prototype.growable
+description: Requires this value to have a [[ArrayBufferData]] internal slot
+info: |
+ get SharedArrayBuffer.prototype.growable
+
+ 1. Let O be the this value.
+ 2. Perform ? RequireInternalSlot(O, [[ArrayBufferData]]).
+ [...]
+features: [SharedArrayBuffer, resizable-arraybuffer]
+---*/
+
+assert.throws(TypeError, function() {
+ SharedArrayBuffer.prototype.growable;
+});
+
+reportCompare(0, 0);