summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/Uint16Array/prototype/BYTES_PER_ELEMENT.js
blob: 7feb311ec642aac54a878f048114a68c79a2c7c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es6id: 22.2.6.1
esid: sec-typedarray.prototype.bytes_per_element
description: >
  The initial value of Uint16Array.prototype.BYTES_PER_ELEMENT is 2.
info: |
  The value of TypedArray.prototype.BYTES_PER_ELEMENT is the Number value
  of the Element Size value specified in Table 49 for TypedArray.

  This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }.
includes: [propertyHelper.js]
features: [TypedArray]
---*/

assert.sameValue(Uint16Array.prototype.BYTES_PER_ELEMENT, 2);

verifyNotEnumerable(Uint16Array.prototype, "BYTES_PER_ELEMENT");
verifyNotWritable(Uint16Array.prototype, "BYTES_PER_ELEMENT");
verifyNotConfigurable(Uint16Array.prototype, "BYTES_PER_ELEMENT");