blob: bf2526ddea40cd8858b2cb5132ae051b09f156d7 [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-properties-of-typedarray-prototype-objects
description: >
The initial value of Uint8ClampedArray.prototype.BYTES_PER_ELEMENT is 1.
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(Uint8ClampedArray.prototype.BYTES_PER_ELEMENT, 1);
verifyNotEnumerable(Uint8ClampedArray.prototype, "BYTES_PER_ELEMENT");
verifyNotWritable(Uint8ClampedArray.prototype, "BYTES_PER_ELEMENT");
verifyNotConfigurable(Uint8ClampedArray.prototype, "BYTES_PER_ELEMENT");