summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/Uint32Array/prototype/BYTES_PER_ELEMENT.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/Uint32Array/prototype/BYTES_PER_ELEMENT.js')
-rwxr-xr-xtest/built-ins/TypedArrays/Uint32Array/prototype/BYTES_PER_ELEMENT.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/built-ins/TypedArrays/Uint32Array/prototype/BYTES_PER_ELEMENT.js b/test/built-ins/TypedArrays/Uint32Array/prototype/BYTES_PER_ELEMENT.js
new file mode 100755
index 000000000..8039eb14c
--- /dev/null
+++ b/test/built-ins/TypedArrays/Uint32Array/prototype/BYTES_PER_ELEMENT.js
@@ -0,0 +1,20 @@
+// 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
+description: >
+ The initial value of Uint32Array.prototype.BYTES_PER_ELEMENT is 4.
+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]
+---*/
+
+assert.sameValue(Uint32Array.prototype.BYTES_PER_ELEMENT, 4);
+
+verifyNotEnumerable(Uint32Array.prototype, "BYTES_PER_ELEMENT");
+verifyNotWritable(Uint32Array.prototype, "BYTES_PER_ELEMENT");
+verifyNotConfigurable(Uint32Array.prototype, "BYTES_PER_ELEMENT");