blob: 48c744a5412417ba1e905cd4b6e199deed08283a [file] [log] [blame]
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
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");