blob: 9591247ba888af42dd02b49a1d7e91012a1631e2 [file] [log] [blame]
// Copyright (C) 2015 André Bargull. All rights reserved.
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Returns zero-length buffer if `start` index exceeds `end` index.
info: |
SharedArrayBuffer.prototype.slice ( start, end )
features: [SharedArrayBuffer]
---*/
var arrayBuffer = new SharedArrayBuffer(8);
var start = 5,
end = 4;
var result = arrayBuffer.slice(start, end);
assert.sameValue(result.byteLength, 0);