summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/Uint8Array/name.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/Uint8Array/name.js')
-rwxr-xr-xtest/built-ins/TypedArrays/Uint8Array/name.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/built-ins/TypedArrays/Uint8Array/name.js b/test/built-ins/TypedArrays/Uint8Array/name.js
new file mode 100755
index 000000000..f1e3f03a8
--- /dev/null
+++ b/test/built-ins/TypedArrays/Uint8Array/name.js
@@ -0,0 +1,27 @@
+// Copyright (C) 2015 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+es6id: 22.2.5
+description: >
+ Uint8Array.name is "Uint8Array".
+info: >
+ Each TypedArray constructor has a name property whose value is the
+ String value of the constructor name specified for it in Table 49.
+
+ 17 ECMAScript Standard Built-in Objects:
+ Every built-in Function object, including constructors, that is not
+ identified as an anonymous function has a name property whose value
+ is a String.
+
+ Unless otherwise specified, the name property of a built-in Function
+ object, if it exists, has the attributes { [[Writable]]: false,
+ [[Enumerable]]: false, [[Configurable]]: true }.
+includes: [propertyHelper.js]
+---*/
+
+assert.sameValue(Uint8Array.name, "Uint8Array");
+
+verifyNotEnumerable(Uint8Array, "name");
+verifyNotWritable(Uint8Array, "name");
+verifyConfigurable(Uint8Array, "name");