Skip to content
Snippets Groups Projects
Commit 79283bd8 authored by André Bargull's avatar André Bargull Committed by Rick Waldron
Browse files

Add missing 'SharedArrayBuffer' feature tag

parent f717982c
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
/*--- /*---
esid: sec-get-arraybuffer.prototype.bytelength esid: sec-get-arraybuffer.prototype.bytelength
description: Throws a TypeError exception when `this` is a SharedArrayBuffer description: Throws a TypeError exception when `this` is a SharedArrayBuffer
features: [SharedArrayBuffer]
---*/ ---*/
var getter = Object.getOwnPropertyDescriptor( var getter = Object.getOwnPropertyDescriptor(
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
esid: sec-arraybuffer.prototype.slice esid: sec-arraybuffer.prototype.slice
description: > description: >
Throws a TypeError if `this` is a SharedArrayBuffer Throws a TypeError if `this` is a SharedArrayBuffer
features: [SharedArrayBuffer]
---*/ ---*/
assert.throws(TypeError, function() { assert.throws(TypeError, function() {
......
...@@ -6,7 +6,7 @@ esid: sec-integer-indexed-exotic-objects-get-p-receiver ...@@ -6,7 +6,7 @@ esid: sec-integer-indexed-exotic-objects-get-p-receiver
description: > description: >
Return value from valid numeric index, with SharedArrayBuffer Return value from valid numeric index, with SharedArrayBuffer
includes: [testTypedArray.js] includes: [testTypedArray.js]
features: [TypedArray] features: [TypedArray, SharedArrayBuffer]
---*/ ---*/
var proto = TypedArray.prototype; var proto = TypedArray.prototype;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment