summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/ArrayBuffer/prototype/slice/start-exceeds-end.js
blob: 30ad862191d41bbe5c0b7ddef4c99f3bec4621e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-arraybuffer.prototype.slice
description: >
  Returns zero-length buffer if `start` index exceeds `end` index.
info: |
  ArrayBuffer.prototype.slice ( start, end )

  ...
  12. Let newLen be max(final-first,0).
  ...
---*/

var arrayBuffer = new ArrayBuffer(8);

var start = 5,
  end = 4;
var result = arrayBuffer.slice(start, end);
assert.sameValue(result.byteLength, 0);

reportCompare(0, 0);