summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/DataView/prototype/byteLength/detached-buffer.js
blob: 33497518f1f872ab3cacaf142187e60c5223dce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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-dataview.prototype.bytelength
description: Throws a TypeError if the instance has a detached buffer
info: |
  get DataView.prototype.byteLength
  ...
  Let buffer be the value of O's [[ViewedArrayBuffer]] internal slot.
  If IsDetachedBuffer(buffer) is true, throw a TypeError exception.
  ...
includes: [detachArrayBuffer.js]
---*/

let buffer = new ArrayBuffer(1);
let dv = new DataView(buffer, 0);

$DETACHBUFFER(buffer);

assert.throws(TypeError, () => {
  dv.byteLength;
});

reportCompare(0, 0);