Add missing features: [resizable-arraybuffer] (#3029)

* Add missing features: [resizable-arraybuffer]

* fixup! Add missing features: [resizable-arraybuffer]

Co-authored-by: Mike Pennisi <mike@mikepennisi.com>
This commit is contained in:
Rick Waldron 2021-06-25 14:01:23 -04:00 committed by GitHub
parent 802f22bf0e
commit fb0a68a2cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 1 deletions

View File

@ -11,6 +11,7 @@ info: |
Built-in function objects that are not identified as constructors do not Built-in function objects that are not identified as constructors do not
implement the [[Construct]] internal method unless otherwise specified implement the [[Construct]] internal method unless otherwise specified
in the description of a particular function. in the description of a particular function.
features: [resizable-arraybuffer]
---*/ ---*/
assert.sameValue( assert.sameValue(

View File

@ -11,6 +11,7 @@ info: |
Built-in function objects that are not identified as constructors do not Built-in function objects that are not identified as constructors do not
implement the [[Construct]] internal method unless otherwise specified implement the [[Construct]] internal method unless otherwise specified
in the description of a particular function. in the description of a particular function.
features: [resizable-arraybuffer]
---*/ ---*/
assert.sameValue( assert.sameValue(

View File

@ -11,6 +11,7 @@ info: |
Built-in function objects that are not identified as constructors do not Built-in function objects that are not identified as constructors do not
implement the [[Construct]] internal method unless otherwise specified implement the [[Construct]] internal method unless otherwise specified
in the description of a particular function. in the description of a particular function.
features: [resizable-arraybuffer]
---*/ ---*/
assert.sameValue( assert.sameValue(

View File

@ -5,7 +5,7 @@ esid: sec-typedarray-buffer-byteoffset-length
description: > description: >
Throws a RangeError for resizable ArrayBuffers when offset > byteLength Throws a RangeError for resizable ArrayBuffers when offset > byteLength
includes: [testTypedArray.js] includes: [testTypedArray.js]
features: [TypedArray] features: [TypedArray, resizable-arraybuffer]
---*/ ---*/
testWithTypedArrayConstructors(function(TA) { testWithTypedArrayConstructors(function(TA) {