summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/ArrayBuffer/isView/arg-is-typedarray.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/ArrayBuffer/isView/arg-is-typedarray.js')
-rw-r--r--js/src/tests/test262/built-ins/ArrayBuffer/isView/arg-is-typedarray.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/ArrayBuffer/isView/arg-is-typedarray.js b/js/src/tests/test262/built-ins/ArrayBuffer/isView/arg-is-typedarray.js
new file mode 100644
index 0000000000..78cbfbbf61
--- /dev/null
+++ b/js/src/tests/test262/built-ins/ArrayBuffer/isView/arg-is-typedarray.js
@@ -0,0 +1,24 @@
+// Copyright (C) 2016 The V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-arraybuffer.isview
+description: >
+ Return true if arg is an instance of TypedArray
+info: |
+ 24.1.3.1 ArrayBuffer.isView ( arg )
+
+ 1. If Type(arg) is not Object, return false.
+ 2. If arg has a [[ViewedArrayBuffer]] internal slot, return true.
+ 3. Return false.
+features: [TypedArray]
+includes: [testTypedArray.js]
+---*/
+
+testWithTypedArrayConstructors(function(ctor) {
+ var sample = new ctor();
+
+ assert.sameValue(ArrayBuffer.isView(sample), true);
+});
+
+reportCompare(0, 0);