summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/prototype/values/bigint-inherited.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/prototype/values/bigint-inherited.js')
-rw-r--r--test/built-ins/TypedArrays/prototype/values/bigint-inherited.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/built-ins/TypedArrays/prototype/values/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/values/bigint-inherited.js
new file mode 100644
index 000000000..65b5bbf7e
--- /dev/null
+++ b/test/built-ins/TypedArrays/prototype/values/bigint-inherited.js
@@ -0,0 +1,13 @@
+// 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-%typedarray%.prototype.values
+description: >
+ _TypedArray_.prototype has no own property "values"
+includes: [testBigIntTypedArray.js]
+features: [BigInt, TypedArray]
+---*/
+
+testWithBigIntTypedArrayConstructors(function(TA) {
+ assert.sameValue(TA.prototype.hasOwnProperty("values"), false);
+});