summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/Uint16Array/proto.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/Uint16Array/proto.js')
-rwxr-xr-xtest/built-ins/TypedArrays/Uint16Array/proto.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/built-ins/TypedArrays/Uint16Array/proto.js b/test/built-ins/TypedArrays/Uint16Array/proto.js
new file mode 100755
index 000000000..0dbb97a4a
--- /dev/null
+++ b/test/built-ins/TypedArrays/Uint16Array/proto.js
@@ -0,0 +1,13 @@
+// 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: >
+ The prototype of Uint16Array is %TypedArray%.
+info: >
+ The value of the [[Prototype]] internal slot of each TypedArray constructor is the %TypedArray% intrinsic object (22.2.1).
+includes: [testTypedArray.js]
+---*/
+
+assert.sameValue(Object.getPrototypeOf(Uint16Array), TypedArray);