summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/ArrayBuffer/prototype/byteLength/detached-buffer.js
blob: 76d827aa5ea950f1b21f2f4d19a4732fa9cb9e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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-arraybuffer.prototype.bytelength
description: Returns 0 if the buffer is detached
info: |
  get ArrayBuffer.prototype.byteLength
  ...
  If IsDetachedBuffer(buffer) is true, return 0.
  ...
includes: [detachArrayBuffer.js]
features: [align-detached-buffer-semantics-with-web-reality]
---*/

var ab = new ArrayBuffer(1);

$DETACHBUFFER(ab);

assert.sameValue(ab.byteLength, 0, 'The value of ab.byteLength is 0');

reportCompare(0, 0);