summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/ArrayBuffer/options-maxbytelength-compared-before-object-creation.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/ArrayBuffer/options-maxbytelength-compared-before-object-creation.js')
-rw-r--r--js/src/tests/test262/built-ins/ArrayBuffer/options-maxbytelength-compared-before-object-creation.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/ArrayBuffer/options-maxbytelength-compared-before-object-creation.js b/js/src/tests/test262/built-ins/ArrayBuffer/options-maxbytelength-compared-before-object-creation.js
new file mode 100644
index 0000000000..d2fd5ff1f1
--- /dev/null
+++ b/js/src/tests/test262/built-ins/ArrayBuffer/options-maxbytelength-compared-before-object-creation.js
@@ -0,0 +1,43 @@
+// |reftest| shell-option(--enable-arraybuffer-resizable) skip-if(!ArrayBuffer.prototype.resize||!xulRuntime.shell) -- resizable-arraybuffer is not enabled unconditionally, requires shell-options
+// Copyright (C) 2024 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-arraybuffer-length
+description: >
+ The byteLength argument is validated before OrdinaryCreateFromConstructor.
+info: |
+ ArrayBuffer ( length [ , options ] )
+
+ ...
+ 4. Return ? AllocateArrayBuffer(NewTarget, byteLength, requestedMaxByteLength).
+
+ AllocateArrayBuffer ( constructor, byteLength [ , maxByteLength ] )
+
+ ...
+ 3. If allocatingResizableBuffer is true, then
+ a. If byteLength > maxByteLength, throw a RangeError exception.
+ ...
+ 4. Let obj be ? OrdinaryCreateFromConstructor(constructor, "%ArrayBuffer.prototype%", slots).
+ ...
+
+features: [resizable-arraybuffer, Reflect.construct]
+---*/
+
+let newTarget = Object.defineProperty(function(){}.bind(null), "prototype", {
+ get() {
+ throw new Test262Error();
+ }
+});
+
+assert.throws(RangeError, function() {
+ let byteLength = 10;
+ let options = {
+ maxByteLength: 0,
+ };
+
+ // Throws a RangeError, because `byteLength` is larger than `options.maxByteLength`.
+ Reflect.construct(ArrayBuffer, [byteLength, options], newTarget);
+});
+
+reportCompare(0, 0);