Add missing 'SharedArrayBuffer' feature tag

This commit is contained in:
André Bargull 2018-01-17 10:39:19 -08:00 committed by Rick Waldron
parent f717982c94
commit 79283bd80f
3 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,7 @@
/*---
esid: sec-get-arraybuffer.prototype.bytelength
description: Throws a TypeError exception when `this` is a SharedArrayBuffer
features: [SharedArrayBuffer]
---*/
var getter = Object.getOwnPropertyDescriptor(

View File

@ -5,6 +5,7 @@
esid: sec-arraybuffer.prototype.slice
description: >
Throws a TypeError if `this` is a SharedArrayBuffer
features: [SharedArrayBuffer]
---*/
assert.throws(TypeError, function() {

View File

@ -6,7 +6,7 @@ esid: sec-integer-indexed-exotic-objects-get-p-receiver
description: >
Return value from valid numeric index, with SharedArrayBuffer
includes: [testTypedArray.js]
features: [TypedArray]
features: [TypedArray, SharedArrayBuffer]
---*/
var proto = TypedArray.prototype;