Add missing test for SharedArrayBuffer.prototype

This commit is contained in:
Leo Balter 2021-10-28 20:44:04 -07:00 committed by Rick Waldron
parent 7c2af2265c
commit 4cb032dc32
1 changed files with 16 additions and 0 deletions

View 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
});