blob: 1d60311e03f72af81d04ccf01bc4097b98a53368 [file] [log] [blame]
// 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-get-%typedarray%.prototype.byteoffset
description: >
_TypedArray_.prototype has no own property "byteOffset"
includes: [testTypedArray.js]
features: [TypedArray]
---*/
testWithTypedArrayConstructors(function(TA) {
assert.sameValue(TA.prototype.hasOwnProperty("byteOffset"), false);
});