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