mirror of
https://github.com/tc39/test262.git
synced 2025-07-23 05:55:36 +02:00
Add missing test for SharedArrayBuffer.prototype
This commit is contained in:
parent
7c2af2265c
commit
4cb032dc32
16
test/built-ins/SharedArrayBuffer/prototype/prop-desc.js
vendored
Normal file
16
test/built-ins/SharedArrayBuffer/prototype/prop-desc.js
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
// Copyright (C) 2021 Leo Balter. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
/*---
|
||||||
|
esid: sec-sharedarraybuffer.prototype
|
||||||
|
description: Property descriptor of the 'prototype' property
|
||||||
|
info: |
|
||||||
|
This property has the attributes { [[Writable]]: false, [[Enumerable]]:
|
||||||
|
false, [[Configurable]]: false }.
|
||||||
|
includes: [propertyHelper.js]
|
||||||
|
---*/
|
||||||
|
|
||||||
|
verifyProperty(SharedArrayBuffer, 'prototype', {
|
||||||
|
enumerable: false,
|
||||||
|
writable: false,
|
||||||
|
configurable: false
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user